1) I installed virtualenv using pip.
2) I ran the command virtualenv venv
3) Then I ran source venv/bin/activate
but it says that there is no such file or directory.
When I cd
into venv/bin
I find 3 things - python, python 2.7, and python 3.5. Does anyone know the problem?
sudo pip install virtualenv
on your system Python? You really aren't giving us much help here ... – Kenazactivate
files were created without the execute file privileges (664 to be precise). Changing the permissions didn't help though. – Whaleactivate
, but source it e.g. "source activate" or ". activate" (note space) – Handicapped