You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
378 B
13 lines
378 B
10 years ago
|
#Pip
|
||
|
export PIP_REQUIRE_VIRTUALENV=true
|
||
|
export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache
|
||
|
|
||
|
#Virtual Environments
|
||
|
export WORKON_HOME=$HOME/.virtualenvs
|
||
|
export PROJECT_HOME=$HOME/Devel
|
||
|
|
||
|
#Virtual Environment Wrapper
|
||
|
export VIRTUALENVWRAPPER_PROJECT_FILENAME=.project
|
||
|
export VIRTUALENVWRAPPER_SCRIPT=/usr/local/bin/virtualenvwrapper.sh
|
||
|
export VIRTUALENVWRAPPER_HOOK_DIR=$HOME/.virtualenvs
|