Answers for "install python 3.10 on linux"

0

install python 3.9 linux

# Want to do this first usually
sudo apt update

sudo apt install software-properties-common
# A repo for python3.9 that works
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install python3.9
# Checking that it worked
python3.9 --version
# Now to add venv - ensurepip
sudo apt-get install python3.9-venv

sudo python3.9 -m venv <my_env_name>
Posted by: Guest on November-03-2021
0

installing python 3 to linux

~$ git clone https://github.com/sherlock-project/sherlock.git
~$ cd sherlock
~/sherlock$ pip3 install -r requirements.txt
Posted by: Guest on February-07-2022

Python Answers by Framework

Browse Popular Code Answers by Language