Last active
March 29, 2020 15:09
-
-
Save gduverger/8726448 to your computer and use it in GitHub Desktop.
Set up virtual environment
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
cd … | |
pipenv install requests | |
# sudo easy_install virtualenv | |
# mkdir <venv> | |
virtualenv venv --python=python3.6 --no-site-packages --verbose | |
source venv/bin/activate | |
deactivate | |
# http://simononsoftware.com/virtualenv-tutorial/ | |
# http://docs.python-guide.org/en/latest/dev/virtualenvs/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment