Klicken Sie auf das von Rot umgebene Teil Ich werde zur Versionsauswahlseite wechseln ** Anaconda 4.3.1 Python3.6 64bit ** Installationsprogramm auswählen (Ich persönlich bin eher an 2.X gewöhnt, aber es scheint, dass die Unterstützung in der Python-Community bis 2020 dauern wird, also habe ich mich für 3.X entschieden.) ** Bitte beachten Sie, dass Python 2.X und 3.X nicht kompatibel sind !! **
Da es ungefähr 400 MB groß ist, ist es besser, es auf dem Dateiserver abzulegen, wenn Sie es mit einer großen Anzahl von Personen tun
Starten Sie vorerst das Installationsprogramm (Anaconda 3-4.1-Windows-x86_64.exe) und installieren Sie es direkt unter dem Laufwerk C.
Eingabeaufforderung starten-> Befehl "Python" ausführen
C:\>python
Python 3.6.0 |Anaconda 4.3.1 (64-bit)| (default, Dec 23 2016, 11:57:41) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
Beenden Sie den Interpreter mit exit ()
Wenn der Python-Interpreter zu diesem Zeitpunkt nicht gestartet wird, überprüfen Sie die Umgebungsvariablen
Fügen Sie hinzu, wenn nicht
Hallo Welt vorerst im interaktiven Modus
C:\>python
Python 3.6.0 |Anaconda 4.3.1 (64-bit)| (default, Dec 23 2016, 11:57:41) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> word = 'Hello Python World!'
>>> print(word)
Hello Python World!
>>> exit()
Beginnen Sie dann mit der Skriptdatei
#coding:UTF-8
#Codierungsdeklaration bei Verwendung von Japanisch
word = 'Hallo Welt'
print word
Wechseln Sie an der Eingabeaufforderung in das Arbeitsverzeichnis und beginnen Sie mit dem Python-Befehl
C:\>cd work
C:\work>python hello.py
Hallo Welt
Bereiten Sie eine virtuelle Umgebung für Tensorflow vor. Conda ist eine Paketverwaltungsanwendung (mit Pip usw.)
C:\work>conda info -e
# conda environments:
#
root * C:\Anaconda
Erstellen Sie mit dem Befehl create eine Umgebung für Tensorflow
conda create -n py27 python=2.7 anaconda
# conda create -n Name der virtuellen Umgebung Python=Python Ver Anaconda
.
.
.
Proceed ([y]|n)?y
Sie werden aufgefordert, auf dem Weg fortzufahren. Geben Sie also y ein und geben Sie ein Das Paket wird für eine Weile installiert, also warten Sie
Überprüfen Sie erneut, wenn Sie fertig sind
C:\>conda info -e
# conda environments:
#
py27 C:\Anaconda\envs\py27
root * C:\Anaconda
Aktiviere py27
C:\>activate py27
(py27) C:\>conda info -e
# conda environments:
#
py27 * C:\Anaconda\envs\py27
root C:\Anaconda
Inaktiv ist "deaktivieren"
Soweit vorerst Bis zum nächsten Mal
Herausfinden
Recommended Posts