this post was submitted on 13 Oct 2023
292 points (80.9% liked)

Programmer Humor

31779 readers
412 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 

Sorry Python but it is what it is.

you are viewing a single comment's thread
view the rest of the comments
[–] Scribbd@feddit.nl 1 points 10 months ago

If we talk about solutions: python has plenty. Which might be overwhelming to the user.

I use Direnv to manage my python projects. I just have to add layout pyenv 3.12.0 on top and it will create the virtual environment for me. And it will set my shell up to use that virtual environment as I enter that directory. And reset back to default when I leave the directory.

But you could use pipenv, poetry, pdm, conda, mamba for your environment management. Pip and python do not care.