Mac OS Catalina 10.15.7 Spyder 4.1.4 Anaconda 3 Python 3.8.3
Beim Versuch, Tensorflow im Terminal zu installieren, wurde der folgende Fehler angezeigt. (Stand 28. Oktober 2020)
(Kürzung)
UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:
Specifications:
- tensorflow -> python[version='2.7.*|3.7.*|3.6.*|3.5.*']
Your python: python=3.8
If python is on the left-most side of the chain, that's the version you've asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.
(Kürzung)
Tensorflow unterstützt bis zu 3.7 Versionen von Python, aber Ihre Version ist 3.8. Sagt mir.
Aus diesem Grund habe ich unter Bezugnahme auf diesen Artikel eine virtuelle Umgebung für Python 3.7 erstellt. [Umgebungskonstruktion Python]
Klicken Sie in der Umgebung von Anaconda Navigater auf die Schaltfläche Erstellen Name:python37 Package:python3.7 Die Erstellung ist abgeschlossen mit. ▶ ︎ Drücken Sie die Taste, um das Terminal zu starten und den Zustand zu aktualisieren
#Aktualisierung von conda
conda update --all
conda update -n base conda
Und Tensorflow installieren
conda install tensorflow
Übrigens scheint es nicht sehr schön, Conda mit Pip zu verwechseln. [conda and pip: Mischgefahr]
Starten Sie Spyder und geben Sie Folgendes ein, um es auszuführen. Ich konnte erfolgreich importieren.
import tensorflow
Recommended Posts