Skip to content

Instantly share code, notes, and snippets.

@RyanHope
Last active January 29, 2017 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RyanHope/0ad8aabbb87089ecbe4d1c02c278047f to your computer and use it in GitHub Desktop.
Save RyanHope/0ad8aabbb87089ecbe4d1c02c278047f to your computer and use it in GitHub Desktop.
MSYS2 Theano Windows 10 64bit
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