Python Forum

Full Version: Stupid question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi! I want to install Python on Linux. I don't see any non-source options for Linux installers...What options do I have? I will use the source versions if I have to but I would likely need instructions on how to compile it myself. I know I might be able to use an emulator like Wine, but I don't want to have to troubleshoot any issues that stem from using Wine. I also would rather not use my Windows VM if I don't have to.
Use uv,read more about it make installing a lot easier.
uv python install 3.13.1
# Or eg virtual environment
$ uv venv --python 3.12.0
Using Python 3.12.0
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate
Thanks!