Created
September 17, 2018 11:39
-
-
Save rokinmaharjan/f9d92d58cd0c2c2a1b8d0be5f56db44b to your computer and use it in GitHub Desktop.
Create, activate and deactivate virtual environment in python Raw
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Create virtual environment | |
| python -m virtualenv evn_name | |
| ### Activate environment | |
| source env/bin/activate | |
| ### Deactivate environment | |
| deactivate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment