I'm looking for a way to make a virtualenv which will contain just some libraries (which i chose) of the base python installation.
To be more concrete, I'm trying to import my matplotlib to virtualenv during the creation of virtualenv. It can't be installed efficiently with pip or easy_install since it misses some fortran compiler libs. The way i did it till now was to manually copy from
/usr/lib/python2.7/dist-packages/ to virtualenv_name/lib/python2.7/dist-packages/
however this prevents the manully imported links to be registerd by yolk (which prints all currently available libs in virtualenv).
So, is there a way to do a selective variant of the
virtualenv --system-site-packages
question from:
https://stackoverflow.com/questions/65923489/python-when-using-venv-how-do-i-include-a-package-i-installed-outside-of-the-v 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…