前回からの続き
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.
>>>
よし、終わり😊