-
I've found using PDM in a aws/lambda/python docker image to be difficult as AWS expects the docker CMD to run in the global python install. In general AWS just seems to want to support pip. The poetry solution is to disable virtualenv creation and install everything globally. As far as I can tell this isn't possible with PDM though. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
|
Beta Was this translation helpful? Give feedback.
-
I apologize if it's inappropriate/unwelcome to revive this thread, but, from what I can tell, there is no way to simply "turn on" Currently, to use PDM to install everything globally, one would must add Would you be open to a PR that attempts to add such configuration, or would that be too much for a new contributor, and/or too low priority for you expend the effort reviewing? |
Beta Was this translation helpful? Give feedback.
--global --project .
will do the trick.