What is the purpose of the symlinks within the include and local directories in a python virtualenv? -


what purpose of symlinks automatically created within include , local in virtualenv?

when run:

virtualenv myvirtualenv 

it creates following directory structure , symlinks:

myvirtualenv/ ├── bin ├── include │   └── python2.7 -> /usr/include/python2.7 ├── lib └── local     ├── bin -> ../bin     ├── include -> ../include     └── lib -> ../lib 

why important virtual environment track /usr/include/python2.7 or have additional references own directories? ever different set here?


Comments

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -