Skip to content

Instantly share code, notes, and snippets.

@tadone
Created January 2, 2018 13:01
Show Gist options
  • Save tadone/9256fcffa53e65fb5e35dd5a0324137d to your computer and use it in GitHub Desktop.
Save tadone/9256fcffa53e65fb5e35dd5a0324137d to your computer and use it in GitHub Desktop.
[Virtual Envirionment] Create Python3 virtual environment
# 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