Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Open a Terminal window from the homepage.
  2. Create a new conda environment to install your package in, conda create --name myshinynewenv nb_conda_kernelsipykernel
  3. Activate your new environment, conda activate myshinynewenv
  4. Install your package, e.g. conda install -c conda-forge recordlinkage
  5. 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.
  6. 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.

...