日々精進

新しく学んだことを書き留めていきます

AIやるならAnacondaよりMiniconda

最初のうちはAnacondaを使っていたが、AnacondaNavigatorが重い・不安定という問題がありMinicondaに移行した。

Minicondaをインストーラでインストールした後、以下をAnacondaPromptで実行するとAIを勉強する環境ができる。

conda create -n study python=3.7
conda activate study

conda install jupyter jupyter_console qtconsole notebook sphinx sphinxcontrib nbconvert numpy pandas scikit-learn seaborn

conda install jupyter_contrib_nbextensions -c conda-forge
jupyter nbextension enable codefolding/main
jupyter nbextension enable spellchecker/main
jupyter nbextension enable highlighter/highlighter
jupyter nbextension enable hinterland/hinterland
jupyter nbextension enable keyboard_shortcut_editor/main
jupyter nbextension enable code_prettify/code_prettify
jupyter nbextension enable codefolding/main

やっぱCLI便利だなぁ。。