Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 891 Bytes

gitless.md

File metadata and controls

50 lines (36 loc) · 891 Bytes

Gitless manual install documentation for MacOS 10.11 (El Capitan)

  1. Install and link Python2 (optional, but recommended).
brew install python
brew link python
  1. Install and link Python3.
brew install python3
brew link python3
  1. Install and link Git.
brew install git
brew link git
  1. Prepend PATH in ~/.bash_profile with /usr/local.
vim ~/.bash_profile
export PATH=/usr/local/bin:$PATH
source ~/.bash_profile
  1. Install libgit2, a dependency of PyGit2 that pip doesn't install.
brew install libgit2
  1. Install PyGit2.
pip3.5 install pygit2
  1. Download gitless tarball and manually install (via Python easy_install).
wget -c https://github.com/sdg-mit/gitless/archive/v0.8.4.tar.gz 
tar xzvf v0.8.4.tar.gz
python3.5 setup.py install