2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

WindowsでminicondaとJupyterを導入する方法

Posted at

前書き

miniconda と Jupyter を入れるときのメモです。

環境

Windows 10
Miniconda3

導入方法

Minicondaを入れる

[https://docs.conda.io/en/latest/miniconda.html:embed:cite]

好きなバージョンをインストール。
スクリーンショット 2022-04-01 025338.png

再起動して環境変数にパスを通す。
ユーザー環境変数ならエクスプローラーを再起動するだけで良い。

コンソールを開く

Anaconda Prompt (miniconda3)を開く

パッケージの一覧を見る

conda listで一覧を見られる。

パッケージを入れる

conda install xxxxxを使って好きなパッケージを入れる。
xxxxxはパッケージ名。
個人的にはnumpymatplotlibは必須。

Jupyterを入れる

Jupyterをインストール

Anaconda Prompt (miniconda3)pip install jupyter notebookでインストール。

ipykernelをインストール

そのままでは python にアタッチされないのでconda install notebook ipykernelでインストール。

Jupyterを開く

Anaconda Prompt (miniconda3)からjupyter notebookと打って起動。

おまけ

minicondaを入れたけど直接 python 起動させる場合、pythonと打ち込むと windows store が開くのでpyで開く。

参考文献

https://dev.classmethod.jp/articles/difference-between-anaconda-and-miniconda
https://qiita.com/kawada2017/items/626a80ed5bbfdc2576a5
https://qiita.com/Ringa_hyj/items/0d8193925fbf4e53a113

引用元

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?