0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Jupyterノートブックのメニューから古い Julia を削除するにはどうすればいいですか?

Posted at

Jupyter Notebook メニューから古い Julia カーネルを削除するには、次の手順に従います。

  1. インストールされているカーネルをすべて一覧表示する:
    ターミナルを開いて次のコマンドを実行すると、インストールされているすべてのJupyterカーネルのリストが表示されます。

    jupyter kernelspec list
    
  2. 削除したいカーネルを特定する:
    リストから削除したいJuliaカーネルの名前を探します。次のような名前です。 julia-1.x.

  3. 不要なカーネルをアンインストールする:
    特定のカーネルをアンインストールするには、次のコマンドを実行します:

    jupyter kernelspec uninstall unwanted-kernel
    

    unwanted-kernel を、削除したいカーネルの実際の名前に置き換えます。 (e.g., julia-1.x).

これにより、Jupyter Notebookメニューから古いJuliaカーネルが削除されます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?