I tried to setup virtualenv with virtualenvwrapper on CentOS 7 using pip and I get a UnicodeDecode Error.
Exact Steps:
- Install CentOS7
- Install pip via get-pip.py
- sudo pip install virtualenv
- sudo pip install virtualenvwrapper
- export WORKON_HOME=$HOME/.virtualenvs
- source /usr/local/bin/virtualenvwrapper.sh
when I run mkvirtualenv test
I get
New python executable in test/bin/python
Traceback (most recent call last):
File "<string>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 11 ordinal not in range(128)
ERROR: The executable Blog/bin/python is not functioning
ERROR: It thinks sys.prefix is u'/home/blaw/\xac./virtualenvs' (should be u'/home/blaw/\xac./virtualenvs/Blog')
ERROR: virtualenv is not compatible with this system or executable
What am I doing wrong?
env
to print your environment and look for any none ASCII characters? – Klaus D.