Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

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>
Comment

PREVIOUS NEXT
Code Example
Python :: jupyter notebook dark theme 
Python :: matplotlib label axis 
Python :: python ping ip address 
Python :: remove punctuation from string python 
Python :: python - give a name to index column 
Python :: desktop background change with python 
Python :: import sklearn linear regression 
Python :: supprimer fichier pythpn 
Python :: combination python 
Python :: pandas to csv without header 
Python :: django create app command 
Python :: python add 1 to count 
Python :: print type of exception python 
Python :: torch save state dict 
Python :: pytest ignore warnings 
Python :: generate python date list 
Python :: pandas remove time from datetime 
Python :: mean squared error python 
Python :: f string round 
Python :: get last year of today python 
Python :: python utf 8 encoding 
Python :: discord.py set activity 
Python :: python open new chrome tab 
Python :: python check my gpu 
Python :: python import from other folder outside folder 
Python :: python requests wait for page to load 
Python :: python read entire file as string 
Python :: PRINT VS RETURN IN PYTHON 
Python :: pandas to list 
Python :: how to print numbers from 1 to 20 in python 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =