2
2

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 5 years have passed since last update.

Ubuntu 19.10にPython3をインストール(OS標準)

2
Posted at

はじめに

Ubuntu 19.10にPython3をインストール

サポート

EoanErmine/ReleaseNotes - Ubuntu Wikiより、2020-07でOSはEOLになる。
それ以降に報告された脆弱性や不具合への対応は実施されない可能性がある。

LOG

インストール

# cat /etc/os-release
NAME="Ubuntu"
VERSION="19.10 (Eoan Ermine)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 19.10"
VERSION_ID="19.10"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=eoan
UBUNTU_CODENAME=eoan

# apt update; apt install -y python3
... 略

各種確認

# which python3
/usr/bin/python3

# ll /usr/bin/python*
lrwxrwxrwx. 1 root root       9 Oct  2 12:31 /usr/bin/python3 -> python3.7*
-rwxr-xr-x. 2 root root 5082224 Oct  8 16:47 /usr/bin/python3.7*
-rwxr-xr-x. 2 root root 5082224 Oct  8 16:47 /usr/bin/python3.7m*
lrwxrwxrwx. 1 root root      10 Oct  2 12:31 /usr/bin/python3m -> python3.7m*

# python3 -V
Python 3.7.5rc1

# apt show python3
Package: python3
Version: 3.7.5-1
Priority: important
Section: python
Source: python3-defaults
Origin: Ubuntu
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Original-Maintainer: Matthias Klose <doko@debian.org>
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 191 kB
Provides: python3-profiler
Pre-Depends: python3-minimal (= 3.7.5-1)
Depends: python3.7 (>= 3.7.5~rc1-1~), libpython3-stdlib (= 3.7.5-1)
Suggests: python3-doc (>= 3.7.5-1), python3-tk (>= 3.7.5~rc1-1~), python3-venv (>= 3.7.5-1)
Replaces: python3-minimal (<< 3.1.2-2)
Homepage: https://www.python.org/
Task: minimal, ubuntu-desktop-minimal-default-languages, ubuntu-desktop-minimal-default-languages, ubuntu-desktop-minimal-default-languages, ubuntu-desktop-minimal-default-languages, ubuntu-desktop-minimal-default-languages, ubuntu-desktop-minimal-default-languages, ubuntu-desktop-minimal-default-languages, ubuntu-desktop-default-languages, ubuntu-desktop-default-languages, ubuntu-desktop-default-languages, ubuntu-desktop-default-languages, ubuntu-desktop-default-languages, ubuntu-desktop-default-languages, ubuntu-desktop-default-languages, ubuntu-desktop-default-languages, ubuntu-core
Cnf-Extra-Commands: python
Cnf-Priority-Bonus: 5
Supported: 9m
Download-Size: 47.2 kB
APT-Manual-Installed: yes
APT-Sources: http://archive.ubuntu.com/ubuntu eoan/main amd64 Packages
Description: interactive high-level object-oriented language (default python3 version)
2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?