-
-
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
can’t create a venv with spaces in the name #278
Comments
Someone else got hit with this here: http://lists.idyll.org/pipermail/testing-in-python/2012-June/004996.html |
See also issue #53 (possible duplicate). |
Closing as it's indeed a duplicate. |
Wasn't a duplicate. This bug here is actually fixed as it is now possible (at least 1.8.4) to create a virtualenv with a space. However easy_install fails in there, so does pip:
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Traceback says it all:
$ virtualenv "test with space"
Using real prefix '/usr'
New python executable in test with space/bin/python
Installing distribute..............................................................................................................................................................................................done.
Installing pip...
Error [Errno 2] No such file or directory while executing command "/tmp/user/1013/test ...ace/bin/easy_install" /home/wok/.usr/local...pport/pip-1.1.tar.gz
...Installing pip...done.
Traceback (most recent call last):
File "/home/wok/.usr/bin/virtualenv", line 9, in
load_entry_point('virtualenv==1.7.1.2', 'console_scripts', 'virtualenv')()
File "/home/wok/.usr/local/lib/python2.7/site-packages/virtualenv.py", line 928, in main
never_download=options.never_download)
File "/home/wok/.usr/local/lib/python2.7/site-packages/virtualenv.py", line 1042, in create_environment
install_pip(py_executable, search_dirs=search_dirs, never_download=never_download)
File "/home/wok/.usr/local/lib/python2.7/site-packages/virtualenv.py", line 640, in install_pip
filter_stdout=_filter_setup)
File "/home/wok/.usr/local/lib/python2.7/site-packages/virtualenv.py", line 966, in call_subprocess
cwd=cwd, env=env)
File "/usr/lib/python2.7/subprocess.py", line 679, in init
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1249, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
The text was updated successfully, but these errors were encountered: