Last active
August 16, 2019 00:57
-
-
Save rcanepa/c577a58dcd480575d67cc286e185e101 to your computer and use it in GitHub Desktop.
Start python project with pyenv and pipenv
This file contains 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
$ mkdir new-project | |
$ cd new-project | |
$ pyenv local <python-version> | |
$ pipenv install <package> | |
- About pipenv | |
https://docs.pipenv.org/ | |
https://docs.pipenv.org/basics/ | |
https://realpython.com/pipenv-guide/ | |
https://packaging.python.org/tutorials/managing-dependencies/#managing-dependencies | |
https://docs.pipenv.org/ | |
- About pyenv | |
https://github.com/pyenv/pyenv | |
https://amaral.northwestern.edu/resources/guides/pyenv-tutorial |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment