0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

DockerのUbuntuコンテナにPython3をインストール

Posted at

前回からの続き
ubuntuのdockerコンテナを準備したのはいいけど
Pythonって入ってんの?

# python3
bash: python3: command not found

うん入ってないね

インストールしましょう

その前にapt-getをupdateしましょう

# apt-get update

終わったらPythonをインストールしましょう

# apt-get install -y python3 python3-pip

インストールされてるか確認

# python3
Python 3.12.3 (main, Sep 11 2024, 14:17:37) [GCC 13.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>

よし、終わり😊

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?