Managing Conda environments on the NCShare Cluster
One-Time Setup Steps
1.) Login to the NCShare OnDemand and launch an interactive shell
2.) Install Miniconda
Download the installer:
wget -O Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
bash Miniforge3.sh
~/.bashrc, (init)
which is what you want.
Restart your shell:
exec bash
rm Miniforge3.sh
Now you should be an run conda install
, pip install
, create environments
, etc.
Managing Conda Environments
- Creating a conda environment
Users who will be using Python through SSH and OnDemand should setup virtual environments using miniconda with the desired Python version and packages. After installing Minconda, create a virtual environment. In the example below,
myenv
is the name of the environment andpython=3.9
is the python version number.
conda create -n myenv python=3.9
conda activate myenv
conda install ipykernel
python -m ipykernel install --user --name myenv
conda activate myenv
(myenv) kk338@dcc-login-03 ~ $
conda
or pip
. If your environment is activated, conda keeps track of which packages are installed where. Some packages will require pip to install - your new conda environment has it’s own pip install.
Accessing Jupyter Lab through NCShare OnDemand portal
- Login at [ood.ncshare.org]https://ood.ncshare.org/)
- Click on Interactive Apps in the top navigation menu
- Click on Jupyter Lab Apptainer a. Input the number of hours you would like the server to remain active (please try to remain small, as it will continue running even if you are not using it) b. Input the desired amount of memory, and CPUs (try to start small with only a few gigabytes of memory and cores) e. Press the blue "Launch" button on the bottom of the page
- After pressing the blue "launch" button, your job will be queued to start a Jupyter Lab server You should see this automatically
- Wait a few minutes for the Jupyter Lab server to finish launching. The status will automatically change from "Starting" to "Running" when the server is ready
- Press the blue "Connect to Jupyter" button when the server is running to access your Jupyter Lab server
- you should be able to change kernel as normal