오래된 ipykernel을 제거하는 방법

오래된 ipykernel을 제거하는 방법

나는 리눅스를 가지고 장난을 치며 환경을 시험하고 있습니다. 이 실험 동안 나는 아무 목적도 없는 다양한 커널을 만들었습니다.

source my_environment_name/bin/activate  
python -m pip install ipykernel          
python -m ipykernel install

python -m ipykernel install --user --name=test_venv

오래된 커널을 제거하려고 하는데 어디에 저장되어 있는지 모르겠고 터미널을 사용하여 제거하는 방법을 알 수 없습니다. 나는 순진하게 시도했다:

python -m ipykernel uninstall --user --name=test_venv

그러나 이것은 작동하지 않습니다. 오래된 커널을 제거하여 환경을 정리하는 방법은 무엇입니까?

답변1

찾아보세요:

/home/solebay/.local/share/jupyter/kernels/env

답변2

jupyter kernelspec커널을 관리하려면 다음 명령을 사용하세요 .

$ jupyter kernelspec --help
Manage Jupyter kernel specifications.

Subcommands
-----------

Subcommands are launched as `jupyter kernelspec cmd [args]`. For information on
using subcommand 'cmd', do: `jupyter kernelspec cmd -h`.

list
    List installed kernel specifications.
install
    Install a kernel specification directory.
uninstall
    Alias for remove
remove
    Remove one or more Jupyter kernelspecs by name.
install-self
    [DEPRECATED] Install the IPython kernel spec directory for this Python.
provisioners
    List available provisioners for use in kernel specifications.

To see all available configurables, use `--help-all`
$ jupyter kernelspec list
Available kernels:
  ch701      /home/jovyan/.local/share/jupyter/kernels/ch701
  isis       /home/jovyan/.local/share/jupyter/kernels/isis
  python3    /opt/conda/envs/isis/share/jupyter/kernels/python3
$ jupyter kernelspec remove ch701
Kernel specs to remove:
  ch701                 /home/jovyan/.local/share/jupyter/kernels/ch701
Remove 1 kernel specs [y/N]: y
[RemoveKernelSpec] Removed /home/jovyan/.local/share/jupyter/kernels/ch701
$ jupyter kernelspec list
Available kernels:
  isis       /home/jovyan/.local/share/jupyter/kernels/isis
  python3    /opt/conda/envs/isis/share/jupyter/kernels/python3

바라보다!

관련 정보