This is an English translation of a Japanese blog. Some content may not be fully translated.
Snowflake

Installing snowflake-connector-python in Anaconda Environment

Reference URLs:

Installation

With pip, you can simply use pip install snowflake-connector-python, but since snowflake-connector-python is not in the Anaconda repository, you need to specify conda-forge.

conda install -c conda-forge snowflake-connector-python

Trouble Encountered

Got an error where Solving environment would not proceed, so I updated the conda environment as described in the article below.

(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): /
\
|
\

Solution for “Solving environment: failed” with conda update - Qiita

conda install anaconda
conda update --all
Suggest an edit on GitHub