Your question can probably be answered here.
- activate the env
- run
conda env export --from-history > environment.yml
- share the .yml file
To make an env from such a file, just run conda env create -f environment.yml
conda remove --name myenv --all
Make sure you deactivate your conda env before doing this.
- install ipykernel
conda install -c anaconda ipykernel
- run this
python -m ipykernel install --user --name=ENVNAME