Mac OSX Mavericksにanaconda 3.6.2をダウンロードしてインストールしましたが、anacondaが事前にインストールされていないパッケージseaborn
をインストールする必要があります。
_$ conda install seaborn
Fetching package metadata: ..
Error: No packages found in current osx-64 channels matching: seaborn
You can search for this package on Binstar with
binstar search -t conda seaborn
You may need to install the Binstar command line client with
conda install binstar
_
次に、pip
を使用してパッケージをインストールしようとしました
_$ which pip
/Users/username/anaconda/bin/pip
$ pip install seaborn
Could not find an activated virtualenv (required).
_
root
Anaconda envを再度アクティブにしようとしましたが、まだ動作しません
_$ source activate root
discarding /Users/username/anaconda/bin from PATH
prepending /Users/username/anaconda/bin to PATH
$ pip install seaborn
Could not find an activated virtualenv (required).
_
次に、virualenvをアクティブにしようとすると、_pip install
_が機能します。
_workon testEnv
pip install seaborn
_
ここで、Anacondaのランチャーから_iPython notebook
_を起動しました。しかし、seaborn
パッケージは見つからないようです!
seaborn
パッケージは本当にインストールされましたか?
_~/bashprofile
_には、次のものがあります。
_# virutalenvwrapper
export WORKON_HOME=$HOME/.virtualenvs
source /Users/username/.virtualenvs/datasci/bin/virtualenvwrapper.sh
# added by Anaconda 2.0.1 installer
export PATH="/Users/username/anaconda/bin:$PATH"
_
2つのvirtualenvwrapper行を削除し、.bash_profileをリロードしましたが、_pip install
_は引き続きエラーCould not find an activated virtualenv (required).
を返します別のconda環境をアクティブにする_source activate testenv
_は役に立ちません。
_$ source activate ~/.bash_profile
$ pip install seaborn
Could not find an activated virtualenv (required).
$ source activate testenv
discarding /Users/username/anaconda/bin from PATH
prepending /Users/username/anaconda/envs/testenv/bin to PATH
$ pip install seaborn
Could not find an activated virtualenv (required).
_
Macを使用してggplotをインストールするのと同じ問題がありました。ターミナルから実行する場合:
//anaconda/bin/pip install module_name
できます。私はそれが役立つことを願っています!
MC
Pacのanacondaバージョンをインストールする必要があります。ただ走れ:
conda install pip
これにより、アクティブ化されたconda環境内にpipがインストールされます
Bashprofileからvirtualenvwrapper行を削除します。 Anacondaでは、virtualenvの代わりにconda環境を使用する必要があり、virtualenvを使用するとconda環境が破壊される可能性があります。
たぶんこれをあなたのbash_profileに入れてください:
export PIP_REQUIRE_VIRTUALENV=false
それが私の問題でした。私はこの方法でPIPをセットアップしたことを忘れていました。