1

It's telling me that the virtualenv command not found, doesn't anyone know what the problem might be?

Brendans-MacBook-Pro:TestProject brendan.whiting$ python --version
Python 3.5.0
Brendans-MacBook-Pro:TestProject brendan.whiting$ pip install virtualenv
Requirement already satisfied (use --upgrade to upgrade): virtualenv in /Users/brendan.whiting/Library/Python/3.5/lib/python/site-packages
Brendans-MacBook-Pro:TestProject brendan.whiting$ virtualenv venv
-bash: virtualenv: command not found
Brendans-MacBook-Pro:TestProject brendan.whiting$ 
Brendan Whiting
  • 485
  • 3
  • 13

1 Answers1

1

If you use mac os x then the path may not be included in PYTHONPATH variable, so you need to append it with the actual path of modules.

Edik Mkoyan
  • 291
  • 2
  • 15