pip install tensorflow fehlermeldung?

1 Antwort

Versuch's mal mit

pip install tensorflow-gpu

Alternativ kannst du probieren eine Version zu spezifizieren, siehe

https://pypi.org/project/tensorflow/#history

overflow398 
Fragesteller
 12.10.2021, 16:37

Es kommt genau das selbe:

--------------------

pip install tensorflow-gpu

ERROR: Could not find a version that satisfies the requirement tensorflow-gpu (from versions: none)

ERROR: No matching distribution found for tensorflow-gpu

--------------------

kann es daran liegen das ich python 3.10 benutze?

0
mompf03231  12.10.2021, 16:39
@overflow398

Hol dir Conda/Miniconda für Machine Learning, dann kannst du mit

conda create -n 123test python=3.7
-
activate 123test

eine Umgebung mit spezifischer python version erstellen und bei bedarf wieder löschen

1