# create conda environment
$ mamba env create -f env.yml
# update conda environment
$ mamba env update -n featherplot --file env.yml
# $ mamba env update -n featherplot --file env.mac.ymlpip install -e .
# install from pypi
pip install featherplot# activate conda environment
$ conda activate featherplot
# make sure the featherplot package is installed in development mode
$ pip install -e .
# make changes under nbs/ directory
# ...
# compile to have changes apply to the featherplot package
$ nbdev_prepare# publish to pypi
$ nbdev_pypi
# publish to conda
$ nbdev_conda --build_args '-c conda-forge' --mambabuildInstall latest from the GitHub repository:
$ pip install git+https://github.com/dsm-72/featherplot-py.gitor from conda
$ conda install -c dsm-72 featherplotor from pypi
$ pip install featherplot