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 ipykernel ibm_db
    1. *UPDATE 02/08/2023: If you want to connect to DB2 you need to install the ibm_db package at the same time as the ipykernel package due to conflicting Python minor versions*
  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.

...