3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Ubuntu 20.10 に python3.9 をインストールしたときの備忘録

Last updated at Posted at 2021-05-28

はじめに

クラウドサービスで Ubuntu サーバーを立ち上げながらメモしてます。
どうやら Mac みたいに homebrew 入れて brew install python3.9 で完了!というわけではないようで忘れそうなので。。。

参考: こちらを参考にしました

事前情報

OS
  • Ubuntu 20.10
インストールしたいもの
  • python3.9
使うもの
  • apt

流れ

  1. とりあえずaptを更新
  2. リポジトリ管理ソフトをインストール
  3. リポジトリを追加
  4. python3.9をインストール

Step1 - とりあえずaptを更新

apt のパッケージ情報を更新するため apt update を行います。

$ sudo apt update

Step2 - リポジトリ管理ソフトをインストール

インストールは以下のコマンドを実行します。

$ sudo apt install software-properties-common

apt info software-properties-common と打って情報を見てみると
どうやらリポジトリを管理してくれている感じですかね。。。英語もっと勉強しないと。。。

Step3 - リポジトリを追加

上記でインストールしたソフトを使ってリポジトリを追加します。

$ sudo add-apt-repository ppa:deadsnakes/ppa

色々情報が表示された後、以下のような質問をされるので Enter を押します。

Press [ENTER] to continue or Ctrl-c to cancel adding it.

Step4 - python3.9をインストール

それではいよいよ python3.9 をインストールしていきます。。!

$ sudo apt install python3.9

上記を実行すると続けますか??のように聞かれるので Y を打って Enter を押します。
これでインストールが完了します。

以下のようにコマンド入力すると

$ python -V

以下のように帰ってきました。インストール成功です!!

Python 3.9.5

最後に

私の場合はサーバーを立ち上げた直後にやったので参考サイトを見ながらコマンド打っていくだけで他に何かしなくても問題なくインストールできました。

また設定することになった未来の自分や私のように brew install python3.9 みたいに簡単じゃないの!?とお困りの人に参考になれば幸いです。

that is it from me !!!

3
5
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?