Created
January 18, 2017 12:10
-
-
Save Hiyorimi/561d4bf83d9fcb4e2d79a54bf8280cbd to your computer and use it in GitHub Desktop.
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
stty -ixon -ixoff | |
export PATH=/usr/local/bin:$PATH | |
export PS1="\h:\t ~> \W $ " | |
#from http://stackoverflow.com/questions/31864585/cant-get-theano-to-link-against-cudnn-on-osx | |
CUDA_ROOT=/usr/local/cuda | |
export PATH=$CUDA_ROOT/bin:$PATH | |
export PATH=/Developer/NVIDIA/CUDA-7.5/bin:$PATH | |
export DYLD_LIBRARY_PATH=$CUDA_ROOT/lib:$DYLD_LIBRARY_PATH:/usr/local/cuda/lib/ | |
export DYLD_LIBRARY_PATH=/Developer/NVIDIA/CUDA-7.5/lib:$DYLD_LIBRARY_PATH | |
export LD_LIBRARY_PATH=/usr/local/lib | |
export LD_LIBRARY_PATH=/Developer/NVIDIA/CUDA-7.5/lib:$LD_LIBRARY_PATH | |
export LD_LIBRARY_PATH=$CUDA_ROOT/lib:$CUDA_ROOT/lib64:$LD_LIBRARY_PATH:/usr/local/cuda/lib/ | |
export DYLD_FALLBACK_LIBRARY_PATH=/usr/local/cuda/lib:/usr/local/lib:/usr/lib:/Developer/NVIDIA/CUDA-7.5/lib: | |
# virtualenvwrapper: | |
source /usr/local/bin/virtualenvwrapper.sh | |
export WORKON_HOME=/Users/user/.virtualenv | |
PHP_AUTOCONF="/usr/local/bin/autoconf" | |
#Eternal history | |
export HISTFILESIZE= | |
export HISTSIZE= | |
export HISTTIMEFORMAT="[%F %T] " | |
export HISTFILE=~/.bash_eternal_history | |
PROMPT_COMMAND="history -a; $PROMPT_COMMAND" | |
# Lua & Torch | |
. /Users/user/torch/install/bin/torch-activate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment