Skip to content

Instantly share code, notes, and snippets.

View ddyuewang's full-sized avatar

Yue Wang ddyuewang

  • M.Sc.
  • NYC
View GitHub Profile
@ddyuewang
ddyuewang / .vimrc
Created December 11, 2017 02:51 — forked from topheman/.vimrc
vim-config on Mac OS X
" Vundle config
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
@ddyuewang
ddyuewang / gist:68e75dc756e484ab005624a0b1858314
Created April 9, 2016 17:09 — forked from Bouke/gist:11261620
Multiple Python installations on OS X

Previous versions used homebrew to install the various versions. As suggested in the comments, it's better to use pyenv instead. If you are looking for the previous version of this document, see the revision history.

$ brew update
$ brew install pyenv
$ pyenv install 3.5.0
$ pyenv install 3.4.3
$ pyenv install 3.3.6
$ pyenv install 3.2.6
$ pyenv install 2.7.10

$ pyenv install 2.6.9