You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
users always ask how to create a separate conda environment from the default environment that can be used to execute notebooks. You need to register the 'kernel'.
An example, and note that you might have to log out and log back into the server:
conda create -q -y -n isce2 python=3.8 isce2=2.5.1 ipykernel
conda activate isce2
# The following command is necessary for JupyterHub to find this kernel for your notebook
python -m ipykernel install --user --name isce2 --display-name "Python (isce2)"
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
users always ask how to create a separate conda environment from the default environment that can be used to execute notebooks. You need to register the 'kernel'.
An example, and note that you might have to log out and log back into the server:
The text was updated successfully, but these errors were encountered: