Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. ### CUDA
  2. export PATH=/usr/local/cuda/bin${PATH:+:${PATH}}
  3. export LD_LIBRARY_PATH=/usr/local/cuda/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
  4. export CUDA_HOME=/usr/local/cuda
  5.  
  6. ### Virtualenvwrapper
  7. if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then
  8. export WORKON_HOME=$HOME/.virtualenvs
  9. source /usr/local/bin/virtualenvwrapper.sh
  10. fi
  11.  
  12. ### nodebrew
  13. export PATH=$HOME/.nodebrew/current/bin:$PATH
  14.  
  15. ### golang
  16. export PATH=/usr/local/go/bin:$PATH
  17. export GOPATHBASE=$HOME/.go
  18. export GOPATH=$GOPATHBASE
  19.  
  20. ### direnv
  21. export EDITOR=vim
  22. eval "$(direnv hook zsh)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement