Last active
September 2, 2016 01:51
-
-
Save draptik/5638602 to your computer and use it in GitHub Desktop.
Sample setup for python-virtualenvwrapper. Inspired by: - http://www.wongdev.com/blog/2013/01/16/octopress-on-archlinux/
- https://wiki.archlinux.org/index.php/Python_VirtualEnv#Virtualenvwrapper
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
# pacman -S python-virtualenvwrapper | |
$ echo 'WORKON_HOME=$HOME/.virtualenvs' >> ~/.bashrc | |
$ . ~/.bashrc | |
$ mkdir -p $WORKON_HOME | |
$ echo 'source /usr/bin/virtualenvwrapper.sh' > ~/.bashrc | |
$ . ~/.bashrc | |
$ mkvirtualenv -p python2.7 --distribute blog_env |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment