“Zainstaluj Python 3.9 Linux” Kod odpowiedzi

Zainstaluj 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>
Agrius

Dodaj Python 3.9 do USR/Bin

CXX="/usr/bin/g++"              \
./configure --prefix=/usr       \
            --enable-shared     \
            --with-system-expat \
            --with-system-ffi   \
            --with-ensurepip=yes &&
make
Frantic Falcon

Odpowiedzi podobne do “Zainstaluj Python 3.9 Linux”

Pytania podobne do “Zainstaluj Python 3.9 Linux”

Więcej pokrewnych odpowiedzi na “Zainstaluj Python 3.9 Linux” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu