PyCharm Probleme mit venv

24.07.2024 - Lesezeit: ~1 Minute

Bei der Arbeit mit PyCharm traten irgendwann Probleme auf

Modul not found

Dann ließen sich neue Module nicht mehr installieren

Abhilfe schaffte nur:

Zuerst die alte venv löschen:

$ cd ~/Entwicklung/PycharmProjects/nfix/
$ rm -R ./venv

Die neue venv erstellen.

$ $ python3 -m venv venv
$ source venv/bin/activate

Kontrolle welches Python beutzt wird:

$ which python3                 
/home/wnf/Entwicklung/PycharmProjects/nfix/venv/bin/python3

Danach muss in PyCharm für das Projekt erst einmal jedes benötigte Modul nach installiert werden,

Tags: Python PyCharm