pnutzh4x0r@lemmy.ndlug.org to Python@programming.devEnglish · 2 years agoPython 3.12.0www.python.orgexternal-linkmessage-square11fedilinkarrow-up17arrow-down10
arrow-up17arrow-down1external-linkPython 3.12.0www.python.orgpnutzh4x0r@lemmy.ndlug.org to Python@programming.devEnglish · 2 years agomessage-square11fedilink
minus-squareComplexLotus@lemmy.worldlinkfedilinkarrow-up1arrow-down1·2 years agoHow do you guys update python versions and all the libraries you have installed? I have multiple like pygame ptpython pandas Pillow icecream … is it not a massive hassle to have to reinstall all of this with every new version and fight the old version on ubuntu?
minus-squarecoffeewithalex@lemmy.worldlinkfedilinkarrow-up2·2 years agoOn Linux, I’d just build my own Python binaries and make them available. But you can also use pyenv for the same thing if you’re ok with it. Then, using poetry, I have different projects with isolated environments.
minus-squareENipo@lemmy.worldlinkfedilinkarrow-up2·2 years agoYou are 100% right, that’s why we use virtual environments. Specifically we use poetry, which is fine.
minus-squaremonkey@lemmy.worldlinkfedilinkarrow-up1·2 years agoPyenv! Let the OS have its own version and work on whatever version you want, whenever.
minus-squareScribbd@feddit.nllinkfedilinkarrow-up2·edit-22 years agoAlso pipx for cli tools. It creates isolated environments for every tool you install. And upgrading is one command away pipx reinstall-all --python (your pyenv).
How do you guys update python versions and all the libraries you have installed? I have multiple like
On Linux, I’d just build my own Python binaries and make them available. But you can also use pyenv for the same thing if you’re ok with it.
Then, using poetry, I have different projects with isolated environments.
You are 100% right, that’s why we use virtual environments. Specifically we use poetry, which is fine.
Pyenv! Let the OS have its own version and work on whatever version you want, whenever.
Also pipx for cli tools. It creates isolated environments for every tool you install. And upgrading is one command away
pipx reinstall-all --python (your pyenv)
.