Plato.acadiau.ca



Installation Instructions for WindowsDownload and install Python 3.5.3 from . You must use Python 3.5.3 for TensorFlow to install, this is the only version of Python they support on Windows. When installing, make sure you check the box “Add Python 3.5 to PATH”.You should choose the Windows x86-64 web-based installer or Windows x86-64 executable installer. If your Windows version is only 32 bit, choose the Windows x86 web or Windows x86 executable installer.Download the pre-compiled Scipy Binary from . You almost certainly want scipy0.19.0cp35cp35mwin_amd64.whl, which is the binary for Python 3.5.3 running on Windows 64 bit. If your Windows install is only 32 bit, you want scipy?0.19.0?cp35?cp35m?win32.whlDownload the pre-compiled Numpy+mkl binary from . This is a large file, it will take some time to download.You almost certainly want numpy?1.12.1+mkl?cp35?cp35m?win_amd64.whl, which is the binary for Python 3.5.3 running on Windows 64 bit.If your Windows install is only 32 bit, you want numpy?1.12.1+mkl?cp35?cp35m?win32.whlNOTE: If you have both Python 2 and Python 3 installed on your system, verify pip is installing to the correct version pip with ‘pip –V’. You should see ‘pip 9.0.1 from c:\path\to\pip (Python 3.5)’ If you see (Python 2.7), try pip3 –V. If that reports (Python 3.5), whenever you see pip below, use pip3 (and python3 when running) instead.Open powershell, and navigate to where you downloaded the Numpy + mkl binary, and run ‘pip install --user my-numpy-binary.whl’Navigate to where you downloaded the Scipy binary, and run ‘pip install --user my-scipy-binary.whl’Install Tensorflow with ‘pip install --user --upgrade tensorflow’. This may take some time. If it appears to hang, press enter.Install Keras and Matplotlib with ‘pip install --user --upgrade keras matplotlib’. This may take some time. If it appears to hang, press enter.Install sklearn with ‘pip install --user --upgrade sklearn’. Congratulations, you should be good to go. You can verify everything is installed correctly by running the test python file included with this document.Installation instructions for OS X(This install was tested on the following system: OS X 10.11.4, Python 3.6.1)Install Python 3 if it is not already installed. You can find the download on , or the (recommended) way is to install using homebrew, a package manager for OS X. You can install homebrew at , then do brew install python3 from the command line. Do NOT use sudo when installing using brew.Once you have installed python3 (we are assuming you used homebrew), verify the versions are correct with pip3 -V and python --versionInstall numpy and scipy with pip install --user --upgrade numpy scipyInstall sklearn with pip install --user --upgrade sklearnInstall tensorflow with pip install --user --upgrade tensorflowInstall keras with pip install --user --upgrade kerasInstall matplotlib with pip install --user --upgrade matplotlibYou should now be good to go. Run test.py to verify everything installed correctly. ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download