Created
December 22, 2019 10:21
-
-
Save ekiara/2b34762cf2e19d52b08a2494650d381b to your computer and use it in GitHub Desktop.
Setting up projects with pyenv and pipenv in short
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
# 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