Luis Norambuena@programming.devM to Python@programming.devEnglish · 4 days agoYes, you should use a Python venv in a container like dockerwww.bitecode.devexternal-linkmessage-square41fedilinkarrow-up157arrow-down14file-text
arrow-up153arrow-down1external-linkYes, you should use a Python venv in a container like dockerwww.bitecode.devLuis Norambuena@programming.devM to Python@programming.devEnglish · 4 days agomessage-square41fedilinkfile-text
minus-squarecd_slash_rmrf@programming.devlinkfedilinkarrow-up1·3 days agojust to add to the other answers - no need to have them in your home dir (that sounds like it would suck). use a tool like uv tool or pipx , or just manually create any venv you need under a path you choose, say $HOME/.cache/venvs/
just to add to the other answers - no need to have them in your home dir (that sounds like it would suck). use a tool like
uv tool
orpipx
, or just manually create any venv you need under a path you choose, say$HOME/.cache/venvs/