-
On windows I did the following: pdm --pep582 from then on, a pypackages folder is made inside the project. The .venv is no longer created. how to undo this? https://pdm-project.org/latest/usage/pep582/#enable-pep-582-globally |
Beta Was this translation helpful? Give feedback.
Answered by
pawamoy
Mar 20, 2024
Replies: 1 comment
-
You can configure the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
pbaetens
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can configure the
python.use_venv
setting, setting it to true:pdm config python.use_venv true
. Add-g
for global configuration.