-
Hi, I am using pdm in a GitHub actions job, where I start installing some dependencies. But how do I activate the newly installed venv in The problem I encounter is that my next command is running the lint command using pre-commit, but I get the following error, which I believe happens because I am not within the venv that was just installed (with Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can try |
Beta Was this translation helpful? Give feedback.
You can try
pdm run pre-commit
OR use the--global
option when runningpdm install