The following may help getting things running, at least before we get STARE tools into Conda Forge, etc.
So I installed STARE, pystare on my mac (10.15.7) running the mini-conda version of anaconda (4.9.0, python 3.8.3). I had to do the following to get things up and running.
- For some reason, my Homebrew setup didn't have cmake
brew install cmake
- In the STARE directory built by the github clone.
conda activate base mkdir build; cd build cmake .. make make test make install
- Modify my .bashrc
export STARE_INCLUDE_DIR=/usr/local/include/STARE.h export STARE_LIB_DIR=/usr/local/lib/libSTARE.a
- In the pystare directory built by the github clone.
conda install -c anaconda swig python setup.py build_ext --inplace python setup.py test
- Modify my .bashrc
export PYTHONPATH=${PYTHONPATH}:/Users/mbauer/pystare/:/Users/mbauer/pystareplotlib/:/Users/mbauer/STARE-Cookbooks/contrib/jupyter/: