-
Notifications
You must be signed in to change notification settings - Fork 162
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
Python version not used during install #28
Comments
Does af35863 fix this for you? |
Sadly it does not. CMake still errors out saying:
|
How about f4ec166? |
All that did was add:
on top of the previous error. I should say that I did try that before submitting the issue. |
Interesting. I tried making my /usr/local/bin/python be python3 and it still found my python2 executable before asking, too. |
For context when I run
|
Google suggests that this is a widespread problem on Arch with projects that use CMake and want python2. The suggested workaround is |
I have both python 3.5 and 2.7 installed in my machine (Arch Linux) but whenever I run the
cmake .
command it always picks/usr/bin/python
which links to 3.5.Currently I just made
/usr/bin/python
to point into 2.7 but it would be better if the build script would pick the correct one.The text was updated successfully, but these errors were encountered: