my opinion is my own

Anaconda環境にsnowflake-connector-pythonをインストール

参考URL:

インストール

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 updateで「Solving environment: failed」となった時の解決法 - Qiita

conda install anaconda
conda update --all
---

関連しているかもしれない記事


#Snowflake