Qstairs

現役AIベンチャーCTOの知見、画像認識(人工知能、Deep Learning)を中心とした技術ノウハウをアップしていきます

広告

【Python】WindowsでMiniconda, Anacondaで仮想環境を作成する際の注意点

f:id:qstairs:20160601221351j:plain

WindowsでMiniconda, Anaconda等で、
仮想環境を作成する際の注意点

以下コマンドで仮想環境を作成しようとすると、

conda create -n mykeras

以下のエラーが出ました。

Error: too few arguments, must supply command line package specs or --file

何やら引数が足りていないとのこと。

なので、以下のようにするとうまくいきます。

python 2.7を使用する場合

conda create -n mykeras python=2.7

python 3.5を使用する場合

conda create -n mykeras python=2.7
広告