I tried to import cudamat. Then I ran into the error:
OSError: libcublas.so.3: cannot open shared object file: No such file or directory
I tr
I solved this myself.
first set PATH and LD_LIBRARY_PATH
$ export PATH=/usr/local/cuda-5.5/bin:$PATH $ export LD_LIBRARY_PATH=/usr/local/cuda-5.5/lib64:$LD_LIBRARY_PATH
Then build a symbolic link
sudo ln -s /usr/local/cuda-5.5/lib64/libcublas.so /usr/local/cuda-5.5/lib64/libcublas.so.3