Created
July 18, 2018 18:54
-
-
Save montanalow/f7d0dcc3999782d5d5507435b560dc4a to your computer and use it in GitHub Desktop.
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
| # install virtualenv | |
| pip install virtualenv | |
| # create a virtualenv | |
| virtualenv ~/venvs/a_cool_project | |
| # install your thing in its own virtualenv | |
| ~/venvs/a_cool_project/bin/pip install a_cool_project | |
| # make the virtualenv installed executable available system wide | |
| ln -sf ~/venvs/a_cool_project/bin/cool_runtime /usr/local/bin/cool_runtime |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment