2017-10-30 10 views
0

Google Datalabノートブックにospc taxcalcパッケージを使用する予定です。このパッケージはconda経由でインストールする必要があります。Google Datalabのcondaパッケージをインストール

Datalabがデフォルトでcondaを持っていないので、(https://stackoverflow.com/a/33176085/1840471から)このメソッドは失敗します。pip経由のインストール

%%bash 
conda install -c ospc taxcalc 

も動作しませんということに続き

%%bash 
pip install conda 
conda install -c ospc taxcalc 

ERROR: The install method you used for conda--probably either pip install conda or easy_install conda --is not compatible with using conda as an application. If your intention is to install conda as a standalone application, currently supported install methods include the Anaconda installer and the miniconda installer. You can download the miniconda installer from https://conda.io/miniconda.html .

をURL、私はこれを試しました:

%%bash 
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh 
bash Miniconda2-latest-Linux-x86_64.sh 

wgetが動作しますが、インストールするコマンドはbashだけで、「実行中...」の状態が永続しているように見えます。

これは、Enter複数のキーストロークでライセンスを確認してから、ライセンス条項に同意したことを示すyesのインストーラが原因であると思われます。だから、condaのsilent mode installationは有望に見えた:

WARNING: You currently have a PYTHONPATH environment variable set. This may cause unexpected behavior when running the Python interpreter in Miniconda2. For best results, please verify that your PYTHONPATH only points to directories of packages that are compatible with the Python interpreter in Miniconda2: /content/miniconda

そして利用できるようにしていませんcondaコマンド:これは、次の警告生成

%%bash 
bash Miniconda2-latest-Linux-x86_64.sh -u -b -p $HOME/miniconda 

%%bash 
conda install -c ospc taxcalc 

bash: line 1: conda: command not found

答えて

1

を保留中ですこの仕事を追跡するgithubの問題 - https://github.com/googledatalab/datalab/issues/1376

私は、condonをインストールしてpython、pipおよび他のすべてのpythonパッケージに使用する必要があると考えており、その間に2つのpython環境を混在させることはできません。しかし、コンドーム経験が豊富な人は、別のことを知っているかもしれません。

1

2018-02-21 releaseの時点で、DatalabはCondaをサポートしており、カーネルはそれぞれ独自のConda環境にあります。

関連する問題