-
When working in dev containers, it is likely to share some fundamental dependencies. For example, when using the NGC PyTorch Containers, we prefer to share the pytorch and some other packages. In the meanwhile, we still want to keep local virtual environment especially when working on different projects. I investigated a little bit about the global project related features, but it does not seems to meet the requirements. Just let me know if I missed anything. I also found there is a This may bring extra challenages when locking dependencies, I am ok if there is any workaround for it. BTW, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
It seems that there is a config "include-system-site-packages" [1] for venv, but there is no related documentation and it is also not shown in the [1] Line 74 in f429652 |
Beta Was this translation helpful? Give feedback.
-
That's a config of venv creation. In fact you can give abitrary venv arguments to
|
Beta Was this translation helpful? Give feedback.
That's a config of venv creation. In fact you can give abitrary venv arguments to
pdm venv create
command: