You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What's the problem this feature will solve?
I often installing module/package that need in many venvs and this same in in pain python.. in some reason.
Describe the solution you'd like
Want install module/package in (virtualenv) as active into other as paralel where can in main python site-package dir and "linked" in to virtualenv or virtualenv1 and virtualenv2, etc.
Alternative Solutions
Can be implemented in PIP
Additional context
pip install pandas --base as main Python site-package dir
pip install pandas --base --virtualenv as main Python site-package dir + virtualenv as paralel instalation pip install pandas --base --virtualenv activated as main Python site-package dir + virtualenv as paralel instalation pip install pandas --base --virtualenv activated e:/other/path/virtualenv1 e:/other/path/virtualenv2 as main Python site-package dir + virtualenv as paralel instalation pip install pandas --base --linked activated e:/other/path/virtualenv1 e:/other/path/virtualenv2 as main Python site-package dir + virtualenv as linked instalation
The text was updated successfully, but these errors were encountered:
Myabe You are right. But what if module is instaled into "--base" and not use pip in virtualvenv? Why not do some symlink via virtualvenv in simple way into base python indicating just module? Eg. update virtualvenv with some package that are instaled?
My idea is that after virtualvenv is created, the this virtualvenv know where is base, then can be updated this virtualvenv by some instaled modules as site-packages and can clone this maybe to other as pocket/portfolilo eg. like requiments.txt can be clone.txt or pacakge.txt pocket.txt that can be easy cloned to other venv or linked
What's the problem this feature will solve?
I often installing module/package that need in many venvs and this same in in pain python.. in some reason.
Describe the solution you'd like
Want install module/package in (virtualenv) as active into other as paralel where can in main python site-package dir and "linked" in to
virtualenv
orvirtualenv1
andvirtualenv2
, etc.Alternative Solutions
Can be implemented in PIP
Additional context
pip install pandas --base
as main Python site-package dirpip install pandas --base --virtualenv
as main Python site-package dir + virtualenv as paralel instalationpip install pandas --base --virtualenv activated
as main Python site-package dir + virtualenv as paralel instalationpip install pandas --base --virtualenv activated e:/other/path/virtualenv1 e:/other/path/virtualenv2
as main Python site-package dir + virtualenv as paralel instalationpip install pandas --base --linked activated e:/other/path/virtualenv1 e:/other/path/virtualenv2
as main Python site-package dir + virtualenv as linked instalationThe text was updated successfully, but these errors were encountered: