Die offizielle Website ist hier (Englisch)
Zu zitierender Text
Ich werde auf diese Weise aus dem Link oben auf der Seite zitieren.
Diese Umgebung ist die neueste (Jubiläum aktualisiert) Windows 10, 64-Bit.
TensorFlow supports only 64-bit Python 3.5 on Windows.
Tensorflow scheint unter Windows nur 64-Bit-Python 3.5 zu unterstützen.
Pip installation on Windows
pip ist wie ein Tool wie der Paketmanager von Python, der mit Python 3.5 geliefert wird. Es scheint, dass Sie es einfach damit installieren können.
Python3.5 kann von [Python 3.5 von python.org] heruntergeladen werden (https://www.python.org/downloads/release/python-352/). Ich habe das ausführbare Windows x86-64-Installationsprogramm ** in ** Dateien ** heruntergeladen und installiert.
Sofern bei der Installation nicht anders angegeben
C:\Users\Nutzername\AppData\Local\Programs\Python\Python35\Scripts
Ich denke, Pip wird hier installiert. Wenn es nicht installiert ist, starten Sie das Installationsprogramm erneut und installieren Sie pip.
Wenn Sie das Skriptverzeichnis in der Umgebungsvariablen Path registrieren, ist die Installation von Tensorflow einfacher.
To install the CPU-only version of TensorFlow, enter the following command at a command prompt:
Befehl weggelassen, siehe offizielle Seite
To install the GPU version of TensorFlow, enter the following command at a command prompt:
Befehl weggelassen, siehe offizielle Seite
Hier werden zwei Arten von Befehlen vorbereitet, je nachdem, ob Sie nur die CPU oder die GPU verwenden. Die Oberseite ist nur für die CPU und die Unterseite ist für die GPU.
Führen Sie sofort den Befehl für die CPU aus.
C:\>pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl
Collecting tensorflow==0.12.0rc0 from https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl
Downloading https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl (12.2MB)
100% |################################| 12.2MB 70kB/s
Collecting numpy>=1.11.0 (from tensorflow==0.12.0rc0)
Downloading numpy-1.11.2-cp35-none-win_amd64.whl (7.6MB)
100% |################################| 7.6MB 107kB/s
Collecting wheel>=0.26 (from tensorflow==0.12.0rc0)
Downloading wheel-0.29.0-py2.py3-none-any.whl (66kB)
100% |################################| 71kB 1.7MB/s
Collecting protobuf==3.1.0 (from tensorflow==0.12.0rc0)
Downloading protobuf-3.1.0-py2.py3-none-any.whl (339kB)
100% |################################| 348kB 2.2MB/s
Collecting six>=1.10.0 (from tensorflow==0.12.0rc0)
Downloading six-1.10.0-py2.py3-none-any.whl
Collecting setuptools (from protobuf==3.1.0->tensorflow==0.12.0rc0)
Downloading setuptools-30.0.0-py2.py3-none-any.whl (472kB)
100% |################################| 481kB 589kB/s
Installing collected packages: numpy, wheel, six, setuptools, protobuf, tensorflow
Found existing installation: setuptools 20.10.1
Uninstalling setuptools-20.10.1:
Successfully uninstalled setuptools-20.10.1
Successfully installed numpy-1.11.2 protobuf-3.1.0 setuptools-30.0.0 six-1.10.0 tensorflow-0.12.0rc0 wheel-0.29.0
You are using pip version 8.1.1, however version 9.0.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
In den unteren beiden Zeilen scheint die Pip-Version wütend zu sein, dass sie alt ist.
Aktualisieren Sie pip mit dem angegebenen Befehl.
C:\>python -m pip install --upgrade pip
Collecting pip
Using cached pip-9.0.1-py2.py3-none-any.whl
Installing collected packages: pip
Found existing installation: pip 8.1.1
Uninstalling pip-8.1.1:
Successfully uninstalled pip-8.1.1
Successfully installed pip-9.0.1
Es heißt Erfolgreich installiert, also ist es vielleicht geschafft.
Fügen wir noch einmal Tensorflow hinzu.
C:\>pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl
Collecting tensorflow==0.12.0rc0 from https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl
Using cached https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl
Requirement already up-to-date: numpy>=1.11.0 in c:\users\a1503\appdata\local\programs\python\python35\lib\site-packages (from tensorflow==0.12.0rc0)
Requirement already up-to-date: six>=1.10.0 in c:\users\a1503\appdata\local\programs\python\python35\lib\site-packages (from tensorflow==0.12.0rc0)
Requirement already up-to-date: wheel>=0.26 in c:\users\a1503\appdata\local\programs\python\python35\lib\site-packages (from tensorflow==0.12.0rc0)
Requirement already up-to-date: protobuf==3.1.0 in c:\users\a1503\appdata\local\programs\python\python35\lib\site-packages (from tensorflow==0.12.0rc0)
Requirement already up-to-date: setuptools in c:\users\a1503\appdata\local\programs\python\python35\lib\site-packages (from protobuf==3.1.0->tensorflow==0.12.0rc0)
Installing collected packages: tensorflow
Found existing installation: tensorflow 0.12.0rc0
Uninstalling tensorflow-0.12.0rc0:
Successfully uninstalled tensorflow-0.12.0rc0
Successfully installed tensorflow-0.12.0rc0
Es heißt Erfolgreich installiert, also bin ich sicher, dass es ein Erfolg ist. Es war ziemlich einfach.
Probieren Sie es aus → Tensorflow wird unter Windows nativ unterstützt
Recommended Posts