I need help setting up virtualenv? I installed successfully (running sudo pip install virtualenv), but when I try to create one (typing virtualenv venv in the directory I want one to be created), I get this output:
"Using base prefix '/Users/kristinho/anaconda3'
New python executable in /Users/kristinho/iOS/MyProj/venv/bin/python
ERROR: The executable /Users/kristinho/iOS/MyProj/venv/bin/python is not functioning
ERROR: It thinks sys.prefix is '/Users/kristinho/iOS/MyProj' (should be '/Users/kristinho/iOS/MyProj/venv')
ERROR: virtualenv is not compatible with this system or executable"
I have a strong feeling it has something to do with Python versions and installing virtualenv caused another version of python to be installed over the one I already had. But I'm not sure because installations are mysterious. I looked inside something and found a folder venv.
I have Python 3.4.4 installed via anaconda. I have the latest virtualenv installed. I tried to brew install python to have 2.7, which seemed like it might help based on some googling, but had issues installing that.