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
oreasy_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