Guest User

Untitled

a guest
Nov 17th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. // make sure homebrew is installed on
  2.  
  3. 1) `$brew install python3` // brew install python3 on mac
  4. 2) `$pip3 install virtualenv` // use pip3 to install virtualenv on mac
  5. 3) Creation of virtualenv env inside your project:
  6. `$ virtualenv -p python3 <desired-path>`
  7. 4) Activate the virtualenv:
  8. `$ source <desired-path>/bin/activate`
  9. 5) Deactivate the virtualenv:
  10. `$ deactivate`
  11.  
  12. This way everything is installed for the project using virtual env.
Add Comment
Please, Sign In to add comment