Ich versuche ein Python Package auf einem frisch aufgesetzten Ubuntu zu installieren.
flasktest@flasktest:~$ python3 -m pip install flask
/usr/bin/python3: No module named pip
flasktest@flasktest:~$ pip install flask
Could not find command-not-found database. Run 'sudo apt update' to populate it.
pip: command not found
flasktest@flasktest:~$ python -m pip install flask
Could not find command-not-found database. Run 'sudo apt update' to populate it.
python: command not found
flasktest@flasktest:~$ python3 -m pip install flask
/usr/bin/python3: No module named pip
flasktest@flasktest:~$ python3 pip install flask
python3: can't open file '/home/flasktest/pip': [Errno 2] No such file or directory
Egal was ich eingebe es kommt immer ein Fehler. Wie kann ich pip installieren um z.B Flask zu installieren?