CondaInstallation - evansde77/cirrus GitHub Wiki
Installation with conda.
**Note Conda support was added Jun 2017 and is pretty new, so please report any issues.
Installation
If you have conda installed on your system, you can install cirrus and use conda to provide package level virtualenvs to run tests and develop against.
To run the installer:
curl -O https://raw.githubusercontent.com/evansde77/cirrus/develop/conda-installer.sh
bash conda-installer.sh
This will create a conda environment in ~/.cirrus/venv and install pip, virtualenv and the latest version of cirrus into it. It will also add the alias to the cirrus command to your ~/.gitconfig file.
Common Install Issues
No gitconfig
If you dont have a ~/.gitconfig file, then you can bootstrap one by running:
git config --global user.name "some_user"
git config --global user.email "some_email"
Complex gitconfig
If you have a complex gitconfig with multiline aliases, you may have problems with the installer parsing your .gitconfig file. In which case it should skip complex lines and add the minimal setup to your gitconfig, but if it doesnt, you can simply add the following settings to your .gitconfig:
git config --global cirrus.github_username "your_username"
git config --global alias.cirrus "! /Users/devans/.cirrus/venv/bin/cirrus"