[PYTHON] Führen Sie Tensorflow mit nativer Unterstützung für Windows aus

Installiert, da Tensorflow native Unterstützung für Windows bietet Dies ist die Fortsetzung.


Diese Umgebung ist die neueste (Jubiläum aktualisiert) Windows 10, 64-Bit.

Nun, die Installation war letztes Mal erfolgreich. Versuchen wir, mit Python zu importieren. Sie können ein interaktives Programm eingeben, indem Sie einen Python-Befehl eingeben. Sofern nicht anders angegeben, sollte python.exe hier sein.

C:\Users\Nutzername\AppData\Local\Programs\Python\Python35

Bitte fügen Sie dieses Verzeichnis der Umgebungsvariablen Path hinzu.

>>> import tensorflow
Traceback (most recent call last):
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 18, in swig_import_helper
    return importlib.import_module(mname)
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\importlib\__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 986, in _gcd_import
  File "<frozen importlib._bootstrap>", line 969, in _find_and_load
  File "<frozen importlib._bootstrap>", line 958, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 666, in _load_unlocked
  File "<frozen importlib._bootstrap>", line 577, in module_from_spec
  File "<frozen importlib._bootstrap_external>", line 906, in create_module
  File "<frozen importlib._bootstrap>", line 222, in _call_with_frames_removed
ImportError: DLL load failed:Das angegebene Modul wurde nicht gefunden.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\python\__init__.py", line 54, in <module>
    from tensorflow.python import pywrap_tensorflow
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 21, in <module>
    _pywrap_tensorflow = swig_import_helper()
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 20, in swig_import_helper
    return importlib.import_module('_pywrap_tensorflow')
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\importlib\__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
ImportError: No module named '_pywrap_tensorflow'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\__init__.py", line 24, in <module>
    from tensorflow.python import *
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\python\__init__.py", line 60, in <module>
    raise ImportError(msg)
ImportError: Traceback (most recent call last):
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 18, in swig_import_helper
    return importlib.import_module(mname)
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\importlib\__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 986, in _gcd_import
  File "<frozen importlib._bootstrap>", line 969, in _find_and_load
  File "<frozen importlib._bootstrap>", line 958, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 666, in _load_unlocked
  File "<frozen importlib._bootstrap>", line 577, in module_from_spec
  File "<frozen importlib._bootstrap_external>", line 906, in create_module
  File "<frozen importlib._bootstrap>", line 222, in _call_with_frames_removed
ImportError: DLL load failed:Das angegebene Modul wurde nicht gefunden.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\python\__init__.py", line 54, in <module>
    from tensorflow.python import pywrap_tensorflow
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 21, in <module>
    _pywrap_tensorflow = swig_import_helper()
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 20, in swig_import_helper
    return importlib.import_module('_pywrap_tensorflow')
  File "C:\Users\a1503\AppData\Local\Programs\Python\Python35\lib\importlib\__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
ImportError: No module named '_pywrap_tensorflow'


Error importing tensorflow.  Unless you are using bazel,
you should not try to import tensorflow from its source directory;
please exit the tensorflow source tree, and relaunch your python interpreter
from there.
>>>

Es ist zu lang!

Ich bin mit Python nicht vertraut, daher weiß ich nicht, wie ich den Fehler lesen soll. Also habe ich danach gesucht. Extrahieren Sie eine Zeile aus der Fehlermeldung ** #google search "Fehler beim Importieren von Tensorflow. Sofern Sie nicht bazel verwenden," windows "" **

Ich habe so etwas auf Github gefunden. https://github.com/tensorflow/tensorflow/issues/5949 Ich bezog mich auf die Antwort von *** mrry ***.

Microsoft Visual C++ 2015 Redistributable Update 3 Laden Sie diese exe-Datei herunter, führen Sie sie aus und versuchen Sie es erneut.

>>> import tensorflow
>>>

Es ging gut.

Sobald Sie hier sind, ist der Rest einfach. Lassen Sie uns ein einfaches Programm ausführen.

>>> import tensorflow as tf
>>> hello = tf.constant('Hello tensorflow')
>>> sess = tf.Session()
>>> print(sess.run(hello))
b'Hello tensorflow'
>>>

Es funktionierte! Dieses Mal habe ich es gelöst, indem ich direkt mit der Fehlermeldung gesucht habe. Selbst wenn Sie andere Arten von Fehlern erhalten, können Sie möglicherweise etwas mit der direkten Suche tun. Damit scheinen wir endlich das maschinelle Lernen herauszufordern.

Recommended Posts

Führen Sie Tensorflow mit nativer Unterstützung für Windows aus
Erstellen Sie TensorFlow unter Windows
Führen Sie Jupyter unter Ubuntu unter Windows aus
Führen Sie Openpose unter Python (Windows) aus.
Führen Sie Tensorflow 2.x unter Python 3.7 aus
[Tensorflow] Aufbau der Tensorflow-Umgebung unter Windows 10
Führen Sie Jupyter Notebook unter Windows aus
Führen Sie Tensorflow von Jupyter Notebook unter Bash unter Ubuntu unter Windows aus
Führen Sie das Docker-Image von TensorFlow unter Python3 aus
Führen Sie SwitchBot mit Bleak unter Windows 10 aus
Verwenden Sie Tensorflow 2.1.0 mit Anaconda unter Windows 10!
Führen Sie XGBoost unter Bash unter Ubuntu unter Windows aus
Führen Sie TensorFlow2 auf dem VPS-Server aus
Führen Sie die Radeon-GPU unter Windows unter QEMU / KVM aus
Führen Sie das Servo mit Python unter ESP32 (Windows) aus.
Versuchen Sie es mit Bash unter Windows 10 2 (TensorFlow-Installation)
Führen Sie py.test unter Windows Anaconda und MinGW aus
Ich habe eine TensorFlow-Umgebung mit Windows 10 erstellt
Führen Sie matplotlib in einem Windows Docker-Container aus
Python unter Windows
Installieren Sie Python3.5 + NumPy + SciPy und führen Sie es unter Windows 10 aus
Führen Sie eine Django-Anwendung unter Windows + Apache + mod_wsgi + aus.
Führen Sie yolov4 "vorerst" in Windows aus
Hinweise zur Verwendung von TensorFlow unter Bash unter Ubuntu unter Windows
Installieren von TensorFlow unter Windows Easy für Python-Anfänger
TensorFlow: Führen Sie in Python gelernte Daten unter Android aus
Installieren Sie Tensorflow auf dem Mac
Installieren Sie TensorFlow unter Ubuntu
Pylint unter Windows Atom
Linux (WSL) unter Windows
Führen Sie Django auf PythonAnywhere aus
Führen Sie mysqlclient auf Lambda aus
Verwenden Sie pyvenv unter Windows
Erstellen einer TensorFlow-Umgebung, die GPUs unter Windows 10 verwendet
Anaconda auf Windows Terminal
Installieren Sie Anaconda unter Windows 10
Python Basic ② in Windows
Installieren Sie Python unter Windows
Installieren Sie pycuda unter Windows10
Führen Sie OpenMVG auf einem Mac aus
Probieren Sie FEniCS unter Windows aus!
Führen Sie den Tensorflow der GPU-Version vor Ort in AWS EC2 aus
Erstellen Sie XGBoost unter Windows
Installieren Sie pygraphviz unter Windows 10
Verwenden Sie Ansible unter Windows
Versuchen Sie Poerty unter Windows
Ich bin ein Windows-Benutzer, möchte aber Tensorflow ausführen
Installieren Sie Chainer 1.5.0 unter Windows
Verwenden Sie QuTiP unter Windows
So führen Sie Django unter IIS auf einem Windows-Server aus
Verwenden Sie pip unter Windows
Windows10 (x64) Erstellen Sie nativ eine maschinelle Lernumgebung
Lassen Sie uns jupyter ausführen, das von VS Code nativ mit python3.8 unterstützt wird
Installieren Sie Numpy in virtualenv unter Windows
Aktivieren Sie Python virtualenv unter Windows
Führen Sie Python mit PyCharm aus (Windows)
Installieren Sie Watchdog unter Windows + Python 3.3
Installationshinweise für TensorFlow für Windows
Installieren Sie Win-Kex (Kali-Linux) unter Windows 10.
Bevor Sie Veriloggen unter Windows ausprobieren