Skip to content

Instantly share code, notes, and snippets.

@skrish13
Last active January 4, 2017 19:17
Show Gist options
  • Save skrish13/b1776f6fbebb393e349b9951cb053276 to your computer and use it in GitHub Desktop.
Save skrish13/b1776f6fbebb393e349b9951cb053276 to your computer and use it in GitHub Desktop.
Few useful procedures followed while setting up a linux system for Deep Learning purposes..
  • Installing CUDA

    • Most worked method - .deb file (of your distro) from the site
    • Installing it on a tty
    • Has problems with Mint as such
  • Setting CUDA Paths

    • write in .bashrc:
      • #CUDA Paths
      • export PATH=/usr/local/cuda-8.0/bin:$PATH
      • export LD_LIBRARY_PATH=/usr/local/cuda-8.0/lib64:/usr/local/cuda-8.0/lib
    • Dont forget to source
  • .theanorc

  • Lasagne

    • Install the git version since pip version is quite old. (well, the "latest git version" itself is quite old so)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment