Multiple Environments, Varying Libraries, Same Python Version? #3209
-
My situation: Within each major environment, I have sub-directories, each containing a project/utility. Each of these projects needs its own libraries as well as a GUI toolkit. The GUI toolkit is the same for each, but the other libraries are all over the map. What I know: My question: Another question: In other words, I'm looking to set up a three-tier complex of environments: If any of this needs clarification, please let me know. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Virtualenv doesn't seem to be able to inherit packages from other virtualenvs.
|
Beta Was this translation helpful? Give feedback.
Virtualenv doesn't seem to be able to inherit packages from other virtualenvs.
Neither does Venv.
--system-site-packages
(pyenv virtualenv
can pass arbitrary switches to the underlying command) thus create a 2-level hierarchy.pth
files to use packages installed into another environment