-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Easy_install not installed on virtualenv creation on Python 3.3a3 #281
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
Comments
I also experienced this when testing with Python 3.3 for the first time (Python 3.3.0a4). |
This is the line that doesn't seem to be working the same with my install of Python 3.3. In my MacPorts Python 3.2 install, that line installs easy_install into the bin folder. |
This seems to be fixed in the latest version of the development branch, though I couldn't find a reference in the past issues to where it was fixed. So I think this can be closed. |
Yeah, this was fixed in c2dd64 - not sure how I forgot to close this. |
This appears to still exist in 105ed24. System:
The virtualenv is created with 3.3.0rc1, using:
Which gives the error described above. |
pip 1.2 + Python 3.3.0rc1 (installed from python.org website) + virtualenv 1.8 doesn't work for me on Mac OS X 10.8.1 - error message is the same |
The pip 1.2 and python 3.30rc1 is a separate issue from the patch to this one and tracked in Issue #322 |
$ ~/python/python3.3/bin/virtualenv --distribute testenv New python executable in testenv/bin/python3.3 Also creating executable in testenv/bin/python Installing distribute..............................................................................................................................................................................................................................................................................................................................................................................................................done. Installing pip... Error [Errno 2] No such file or directory: '/home/alex/testenv/bin/easy_install' while executing command /home/alex/testenv/bin/easy_install /home/alex/python/py...pport/pip-1.1.tar.gz ...Installing pip...done. Traceback (most recent call last): File "/home/alex/python/python3.3/bin/virtualenv", line 9, in <module> load_entry_point('virtualenv==1.7.1.2', 'console_scripts', 'virtualenv')() File "/home/alex/python/python3.3/lib/python3.3/site-packages/virtualenv.py", line 928, in main never_download=options.never_download) File "/home/alex/python/python3.3/lib/python3.3/site-packages/virtualenv.py", line 1042, in create_environment install_pip(py_executable, search_dirs=search_dirs, never_download=never_download) File "/home/alex/python/python3.3/lib/python3.3/site-packages/virtualenv.py", line 640, in install_pip filter_stdout=_filter_setup) File "/home/alex/python/python3.3/lib/python3.3/site-packages/virtualenv.py", line 966, in call_subprocess cwd=cwd, env=env) File "/home/alex/python/python3.3/lib/python3.3/subprocess.py", line 783, in __init__ restore_signals, start_new_session) File "/home/alex/python/python3.3/lib/python3.3/subprocess.py", line 1381, in _execute_child raise child_exception_type(errno_num, err_msg) FileNotFoundError: [Errno 2] No such file or directory: '/home/alex/testenv/bin/easy_install'
The text was updated successfully, but these errors were encountered: