Guest User

Untitled

a guest
Oct 15th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #install virtual environment
  2. pip install virtualenv
  3.  
  4. #Create the virtual environment
  5. virtualenv myenv
  6.  
  7. #Activate the virtual environment
  8. #On Mac OS / Linux
  9. source myenv/bin/activate
  10.  
  11. #On windows
  12. myenv\Scripts\activate
  13.  
  14. #Deactivate the virtual environment
  15. deactivate
Add Comment
Please, Sign In to add comment