Python--set up and use UV in linux (Raspberry Pi)
12/7/2025 10:26:33 I am running "Trixie" version of Raspberry Pi install lite ======== #hint: to make my SSH terminal not look crap, make sure to use UTF-8 encoding (I use secureCRT9.6 and properties > appearace > encoding default is "automatic" which isn't working) #install uv apt update apt install curl #needed for next command #install uv using less HD space vs using pip #alternate/better way (from chatGPT--assumes curl is installed) curl -LsSf https://astral.sh/uv/install.sh | sh ===== #SET PATH needed for terminal app to find uv when you try to run it #put into path--for rpi I could skip this step and just restart bash; not sure w othr distros echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc #for some distros .local above is replaced by .cargo #restart bash bash #is uv working? uv #CREATE NEW PROJECT #cd to ~ you should do the next command from your home dir. uv init ide-test-uv #replace ide-test-uv with name of...