-
Notifications
You must be signed in to change notification settings - Fork 243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Microsoft Visual C++ 9.0 is required #99
Comments
Interesting that you've actually got it working somewhat, last I checked one needed to use precompiled binary wheels for any native extensions. |
@jameshilliard here is the output of the commands I'm using, you can see that installing
For some reason that I cannot explain when installing in the Dockerfile while building the image, the files are created in Any suggestions? |
I moved the same command from the It seems a bit odd doing it like this, any suggestions what it is not working in the build time? |
I'm using this great repo to create my Windows PyInstaller executables.
Currently, I still have some projects in Python2 so I'm using the Python2 version and it needs the "Microsoft Visual C++ 9.0" to compile some of the modules.
I'm installing it in the docker like this:
And it seems to work perfectly, the modules that I use compile and installed successfully.
I tried to add these steps to the Dockerfile like this:
It seems to be installed but when I try to install the python module I get the same error:
error: Microsoft Visual C++ 9.0 is required. Get it from http://aka.ms/vcpython27
If I re-install it from inside the docker container it is working again.
I'm not sure what I'm doing wrong and I prefer it will be part of the docker image instead of installing it for every build.
I will be happy to apply a PR if someone will help me to get it to work.
The text was updated successfully, but these errors were encountered: