Anaconda環境にsnowflake-connector-pythonをインストール
参考URL:
- Snowflake Connector Python :: Anaconda.org
- conda-forge/snowflake-connector-python-feedstock: A conda-smithy repository for snowflake-connector-python.
インストール
pipであれば素直にpip install snowflake-connector-python
で良いが、snowflake-connector-pythonがAnacondaのリポジトリにないのでconda-forgeを指定する必要あり。
conda install -c conda-forge snowflake-connector-python
ハマったこと
このときエラーでSolving environment
で先に進まなかったので下記記事を見てconda環境をアップデートした。
(base) jimazato@xxxxxxx AWS-Tokyo % conda install snowflake-connector-python
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): /
\
|
\
conda install anaconda
conda update --all
関連しているかもしれない記事