this post was submitted on 16 Jun 2023
6 points (100.0% liked)

Python

3210 readers
1 users here now

News and discussions about the programming language Python


founded 5 years ago
MODERATORS
 

I'm setting up a new laptop and considering which of the (many) environment managers to use this time around. My standard has been miniconda, since a big plus for me is the ability to set and download specific python version for different projects all in one tool. I also quite like having global access to different environments (i.e. environments aren't tied to specific projects). I typically have a standard GenDataSci environment always available for initially testing things out, then if I know I'll be continuing as a single project I'll make a stand alone environment for it.

But I've also used poetry for tighter control and reproducibility when I'm actually packaging to publish on PyPI. Hatch looks interesting as well but I can't tell if it includes the ability to have separate python version installs for each environment.

What workflows and managers are people using now?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] rhacer 1 points 1 year ago (1 children)
[โ€“] acoustics_guy 1 points 1 year ago

Interesting! To use different python versions, do you need to install them separately with something like pyenv, then point pdm to that? Or can it download and use your chosen python version automatically?