-
hi all, I have set up my project with three different environments (e.g. python 3.8, 3.9, 3.10) in a multi-user system, as a convenience for other users that do not know poetry. is there a way for the I guess I can replicate my repo folder 3 times and install 3 different envs, one python version per folder. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I don't think there is a built-in way. Maybe, you can write a simple wrapper script that activates the appropriate environment (not via Poetry but like any other venv). If the venv is active, |
Beta Was this translation helpful? Give feedback.
I don't think there is a built-in way. Maybe, you can write a simple wrapper script that activates the appropriate environment (not via Poetry but like any other venv). If the venv is active,
poetry run
will run in this venv.