-
I use that script to initialize dev environment: #!/usr/bin/env bash
PDM_VERSION="2.0.0"
pip3 install --user "pdm~=$PDM_VERSION"
pdm venv create
# Hack to make sure that the venv is activated
pdm config
rm .pdm.toml
pdm install I don't like the hack to remove the python path variable. Maybe you know the best way to set the newly created venv as default? |
Beta Was this translation helpful? Give feedback.
Answered by
frostming
Jul 16, 2022
Replies: 1 comment 1 reply
-
In fact, |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
vadim-su
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In fact,
pdm venv create
will be executed automatically when you runpdm install