Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Windows install instructions (Unsupported)

Arjun Bansal edited this page Mar 4, 2016 · 10 revisions
  • Install cygwin-32
  • Install libraries:
    • git (installs python)
    • emacs
    • gcc-core, gcc-g++
    • make
    • hdf5, libhdf5, libhdf5-devel
    • libopencv2.4, libopencv-devel
    • python-h5py
    • python-numpy
    • python-six
  • easy_install pip
  • git clone https://github.com/nervanasystems/neon
  • cd neon
  • pip install -r requirements.txt (will install a bunch of modules, including Cython hopefully).
  • create Makefile.Windows7 with a small change, remove IMAGESET_DECODER dep:
  $ diff Makefile Makefile.Windows7
  153c153
  < sysinstall: sysdeps kernels $(IMAGESET_DECODER) neon_install
  ---
  > sysinstall: sysdeps kernels neon_install
  • make -f Makefile.Windows7 sysinstall
  • Try example:
  cd examples
  python mnist_mlp.py
Clone this wiki locally