Open johndehart opened 1 year ago
How to remove an environment and kernel: --> https://stackoverflow.com/questions/42635310/remove-kernel-on-jupyter-notebook
To remove a Jupyter kernel and the associated Conda environment, follow these steps:
jupyter kernelspec list
jupyter kernelspec uninstall <kernel_name>
conda env list
or
conda info --envs
conda env remove --name <env_name>
Make sure to replace <kernel_name>
and <env_name>
with the actual names of the kernel and environment you want to remove. Perform these operations carefully to avoid unintended deletions.
Notes on how to create a user conda environment is working (or not...). See --> https://stackoverflow.com/questions/58068818/how-to-use-jupyter-notebooks-in-a-conda-environment
So this works in a user environment and shows up in the SoS dropdown. Lets do a little test...
Installing Dakota with python=3.10 resulted in errors. I'll create another issue.