Die Suche ergab 4 Treffer

von Khashayar
Montag 23. Dezember 2019, 13:34
Forum: Allgemeine Fragen
Thema: PIL (Python Image Library) - Pillow
Antworten: 9
Zugriffe: 10053

Re: PIL (Python Image Library) - Pillow

Hab Python 3.7 installiert.

Hab aber vorsichtshalber mich an dem gehalten was du mir empfohlen hast, funktioniert leider auch nicht.

Eingabe in der Shell: ``python3 -m pip install Pillow``
Ausgabe: Der Befehl "python3" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.


Eingabe ...
von Khashayar
Montag 23. Dezember 2019, 12:26
Forum: Allgemeine Fragen
Thema: PIL (Python Image Library) - Pillow
Antworten: 9
Zugriffe: 10053

Re: PIL (Python Image Library) - Pillow

Das einzige was ich bis jetzt in der Shell eingegeben habe, ist dieser command:

Code: Alles auswählen

python -m pip install Pillow
.

Und in der IDE (Pycharm) versuche ich es mit den imports
von Khashayar
Montag 23. Dezember 2019, 12:07
Forum: Allgemeine Fragen
Thema: PIL (Python Image Library) - Pillow
Antworten: 9
Zugriffe: 10053

Re: PIL (Python Image Library) - Pillow

Auch hierbei bekomme ich die selbe Fehlermeldung ausgegeben: ModuleNotFoundError: No module named 'Pillow'
von Khashayar
Montag 23. Dezember 2019, 11:51
Forum: Allgemeine Fragen
Thema: PIL (Python Image Library) - Pillow
Antworten: 9
Zugriffe: 10053

PIL (Python Image Library) - Pillow

Hi,
ich bin neu in Python und nutze dieses Forum um mein Wissen zu erweitern.

Aktuell arbeite ich an einer GUI und habe im Programmcode folgendes hinzugefügt:


import tkinter as tk

root.title("xxx Zeiterfassungssystem")

label1 = tk.Label(root, text = "xxx Zeiterfassungssystem", fg="red", bg ...