Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ekiara/2b34762cf2e19d52b08a2494650d381b to your computer and use it in GitHub Desktop.
Save ekiara/2b34762cf2e19d52b08a2494650d381b to your computer and use it in GitHub Desktop.
Setting up projects with pyenv and pipenv in short
# Setting up projects with pyenv and pipenv in short
user@dev-machine:~/src/project_name$ pyenv local 3.6.10
user@dev-machine:~/src/project_name$ python --version
Python 3.6.10
user@dev-machine:~/src/project_name$ pipenv --python 3.6.10
Creating a virtualenv for this project…
...
...
user@dev-machine:~/src/project_name$ git init
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment