LoginSignup
0
0

More than 1 year has passed since last update.

Amazon Linux2にPython 3.8をインストール

Posted at
# インストール
sudo amazon-linux-extras install -y python3.8

# 確認
python3.8 -V

# venvで仮想環境構築
python3.8 -m venv py38

# activate(有効化)
source ~/py38/bin/activate

# deactivate(無効化)
deactivate
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0