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
Post a Comment