...
- Open a Terminal window from the homepage.
- Create a new conda environment to install your package in,
conda create --name myshinynewenv nb_conda_kernelsipykernel
- Activate your new environment,
conda activate myshinynewenv
- Install your package, e.g.
conda install -c conda-forge recordlinkage
- You can also install from pip in the traditional way, ensuring you activate the environment (step 3) that you want to install the package into first.
- When you close the Terminal window and return to the homepage you should see a new python kernel with the same name as your new conda environment.
...