-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
The executable python does not exist #640
Comments
FYI, it works if you do |
Also works with |
I see little point in the user supplying Looking at sashahart/vex#11 I'm not clear if you are saying there that vex passes |
i had tried your both codes @ionelmc but still its not working horler@horler-HP-245-G5-Notebook-PC: |
Running
virtualenv myvenv --python=python
fails with "The executable python (from --python=python) does not exist" even if python is on the PATH:The issue is wrong executable detection on Windows.
python
is equivalent topython.exe
on Windows but this is not recognized by virtualenv. It works only if you usevirtualenv myvenv --python=python.exe
.The text was updated successfully, but these errors were encountered: