문제

In virtualenvwrapper, is it possible to have my app files in a different folder than the file created each time you mkvirtualenv ?

#virtualenvwrapper
export WORKON_HOME="$HOME/.virtualenv"
export PROJECT_HOME="$HOME/Dev/"
source /usr/local/bin/virtualenvwrapper.sh 

I have the code above in my .bachrc.

도움이 되었습니까?

해결책

Using MKPROJECT will seperate the the files, so the files that created each time you make a project will be in .virtualen and the dev files that you will be working on will be in your 'PROJECT_HOME'

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top