Last active
January 29, 2017 18:09
-
-
Save RyanHope/0ad8aabbb87089ecbe4d1c02c278047f to your computer and use it in GitHub Desktop.
MSYS2 Theano Windows 10 64bit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MSYS2 Theano Windows 10 64bit Setup Notes | |
========================================== | |
Update MSYS2, run until no updates | |
------------------------------------- | |
``` | |
pacman -Syuu | |
``` | |
Install GCC | |
------------------------------------- | |
``` | |
pacman -S mingw-w64-x86_64-toolchain | |
``` | |
Install Git | |
------------------------------------- | |
``` | |
pacman -S git | |
``` | |
Install Cmake | |
------------------------------------- | |
``` | |
pacman -S mingw-w64-x86_64-cmake mingw-w64-x86_64-extra-cmake-modules | |
``` | |
Install QT (optional) | |
------------------------------------- | |
``` | |
pacman -S mingw-w64-x86_64-qt5 | |
``` | |
Install SDL 1.2 | |
--------------------- | |
``` | |
pacman -S mingw-w64-x86_64-SDL mingw-w64-x86_64-SDL_gfx mingw-w64-x86_64-SDL_image mingw-w64-x86_64-SDL_mixer mingw-w64-x86_64-SDL_net mingw-w64-x86_64-SDL_ttf | |
``` | |
Install Python2 and science libs | |
------------------------------------- | |
``` | |
pacman -S mingw-w64-x86_64-python2 mingw-w64-x86_64-python2-pip | |
pacman -S mingw-w64-x86_64-python2-numpy mingw-w64-x86_64-python2-scipy | |
``` | |
Install Theano and PyCUDA | |
------------------------------------- | |
``` | |
pip install Theano pycuda | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment