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

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -