Installation
Create environment
I recommend installing ghproject
inside a conda environment:
# Create a conda environment
git clone https://github.com/mwakok/ghprojects.git
conda env create -f environment.yml
conda activate env_ghproject
To then install the ghproject
:
# Install ghproject package
cd ghproject
pip install .
Uninstalling
If you want to remove your ghproject
installation together with the conda environment, please follwo these steps:
# Removing ghproject.
pip uninstall ghproject
# Step out the environments.
conda deactivate
# List all the active environments. ghproject should be listed.
conda env list
# Remove the findpeaks environment
conda env remove --name ghproject
# List all the active environments. ghproject should be absent.
conda env list