ich habe ein verzwicktes Problem. So wie ich das sehe sind bei mehrere Python Versionen installiert. Unter anderen die Version 3.11 und 3,10. Wobei die Version 3.11 die Standard Versin ist. pip hängt auf der Version 3.10. Jetzt möchte ich die Version 3.10 deinstallieren und pip auf die Version 3.11 hängen. Leider weiß ich nicht wie ich das machen kann? Hier einige Informationen zu Python und pip:
Code: Alles auswählen
root@dsme01:~# which python
/usr/bin/python
root@dsme01:~# cd /usr/bin
root@dsme01:/usr/bin# ls -l | grep python
lrwxrwxrwx 1 root root 7 21. Apr 2023 fail2ban-python -> python3
lrwxrwxrwx 1 root root 24 26. Aug 09:20 pdb3.11 -> ../lib/python3.11/pdb.py
lrwxrwxrwx 1 root root 31 9. Apr 2023 py3versions -> ../share/python3/py3versions.py
lrwxrwxrwx 1 root root 7 17. Jun 15:36 python -> python3
lrwxrwxrwx 1 root root 10 9. Apr 2023 python3 -> python3.11
-rwxr-xr-x 1 root root 6839896 26. Aug 09:20 python3.11
lrwxrwxrwx 1 root root 34 26. Aug 09:20 python3.11-config -> x86_64-linux-gnu-python3.11-config
lrwxrwxrwx 1 root root 17 9. Apr 2023 python3-config -> python3.11-config
lrwxrwxrwx 1 root root 14 17. Jun 15:36 python-config -> python3-config
-rwxr-xr-x 1 root root 3077 26. Aug 09:20 x86_64-linux-gnu-python3.11-config
lrwxrwxrwx 1 root root 34 9. Apr 2023 x86_64-linux-gnu-python3-config -> x86_64-linux-gnu-python3.11-config
root@dsme01:/usr/bin# pip --version
pip 24.3.1 from /usr/local/lib/python3.10/site-packages/pip (python 3.10)
Gruß von Stefan Harbich