Created
January 2, 2018 13:01
-
-
Save tadone/9256fcffa53e65fb5e35dd5a0324137d to your computer and use it in GitHub Desktop.
[Virtual Envirionment] Create Python3 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
# Creation of virtualenv: | |
python3 -m venv <desired-path> | |
# Activate the virtualenv: | |
source <desired-path>/bin/activate | |
# Deactivate the virtualenv: | |
deactivate | |
# Install packages with pip3 | |
pip install Cython==0.27.3 | |
pip install kivy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment