macに機械学習環境の構築 pyenvのuninstall
pyenvを使いたくない。。。。。。。
背景:
brew で pyenvをいれていた uninstallがうまくいかなくてちょっと残骸が残ってる状況w
(追記:できた)
python3系を使えば良さそう!
と思い、環境構築しました
とりあえず。
which python3 でちゃんと入ってればおk
→なければ
brew install python3 で入ります
$which pip3 でpip3が入ってることの確認、
pip3 install numpy && pip3 install scipy && pip3 install matplotlib && pip3 install pandas && pip3 install scikit-learn&& pip3 install chainer && pip3 install jupyter で必要そうな奴をとりあえずぶち込むw
jupyter notebook で開けたw
python2系を使うことはないだろうけど使えないのはまずいので後ほど直そう..........
追記:
#pyenv-virtualenvをインストールしていたら先に削除します brew uninstall pyenv-virtualenv #pyenvをアンインストールする brew uninstall pyenv
本来はこうしないといけないのに "brew uninstall pyenv"しかしてなかったみたいなので
brew install pyenv brew install pyenv-virtualenv // して一度いれて、後ほど消す brew uninstall pyenv-virtualenv brew uninstall pyenv
これで綺麗になりました。
which python でエラーなくできました