In [2]:
%%bash
cd ~
git clone https://github.com/desihub/imaginglss
cd imaginglss
/anaconda/bin/pip install --user -e .
In [3]:
%%bash
cd ~/imaginglss
git stash
git pull
For developers, it is preferable to do updates with git pull
from a true terminal window, or follow other standard git practice of
merging in upstream changes. (e.g. git fetch)
The main development of imaginglss is done this way:
git checkout -b mybigideagit add, git commit, git push, and file a Pull Request.git checkout master; git branch -d mybigidea.
In [ ]:
%%bash
cd ~/imaginglss
/anaconda/bin/pip uninstall imaginglss
/anaconda/bin/pip install --user -e .
In [4]:
import imaginglss
print imaginglss
In [5]:
decals = imaginglss.DECALS('/global/project/projectdirs/m779/imaginglss/dr2.conf.py')
In [ ]: