pip install funktioniert nicht

Probleme bei der Installation?
Antworten
damian
User
Beiträge: 3
Registriert: Montag 1. Mai 2023, 09:23

Hallo,

ich kann leider nicht pip install ausführen, auf meinem Desktop.
Ich habe auch --upgrade ausgeführt.

pip install graphene
pip : The term 'pip' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ pip install graphene
+ ~~~
+ CategoryInfo : ObjectNotFound: (pip:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Daniil A. Podlubniy>
Benutzeravatar
grubenfox
User
Beiträge: 432
Registriert: Freitag 2. Dezember 2022, 15:49

wie ist es mit

Code: Alles auswählen

python -m pip install graphene
?
damian
User
Beiträge: 3
Registriert: Montag 1. Mai 2023, 09:23

python -m pip install graphene
Python
damian
User
Beiträge: 3
Registriert: Montag 1. Mai 2023, 09:23

> python -m venv env
Python
source env/Scripts/activate
source : The term 'source' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ source env/Scripts/activate
+ ~~~~~~
+ CategoryInfo : ObjectNotFound: (source:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

Später möchte ich eine virtuelle Umgebung aufbauen doch es funktioniert nicht
Benutzeravatar
sparrow
User
Beiträge: 4195
Registriert: Freitag 17. April 2009, 10:28

Es gibt kein "source" unter Windows. Du folgst der Anleitung für unioxide Betriebssyteme.

Code: Alles auswählen

env\scripts\activate.bat
Antworten