First follow these instructions to get a copy of the package as a local git repository.
Now that you have the repository, come inside and make your self comfortable. Run
cd seaduckIf you want to create a new conda environment, run
conda create --name bubblebath
conda activate bubblebathI recommend installing the basic dependencies and the extra dependencies for tests at the same time. First, we create a file that combines the two yml file by running
pip install conda-merge
conda-merge environment.yml ci/environment-ci.yml > PleaseIgnore_env.ymlNow, letās install them
conda env update --file PleaseIgnore_env.ymlWorking with environment could be a headache sometimes. If some of the packages is unable to install on your machine, donāt sweat over it. Skip them for now, it is totally possible that some packages is not necessary for your purposes. You might be asking: āHey! Is there a step that is absolutely not optional?ā Yes, you need to install our package if you want to work on it.
pip install -e .Install Jupyter kernel¶
First activate the environment you want to run notebooks on
conda activate bubblebathInstall ipykernel and activate it.
conda install -c anaconda ipykernel
python -m ipykernel install --user --name=bubblebathIf you are using a web page, you may need to refresh the web page.