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

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

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

javascript - Restarting Supervisor and effect on FlaskSocketIO -