I am trying to use:
@conda_base(
libraries={
“pandas”: “1.5.0",
“snowflake-connector-python”: “3.0.0",
},
python=“3.10.6”,
)
but get:
Bootstrapping conda environment...(this could take a few minutes)
Conda ran into an error while setting up environment.:
Step: start, Error: PackagesNotFoundError: The following packages are not available from current channels:
- snowflake-connector-python==3.0.0
I had a look but I do not think this package exists here:
https://conda.anaconda.org/conda-forge/linux-64
do I need to include something along those lines:
os.system(‘pip install my_package’)
import my_package
? Thanks!
Could be that it does not exist:
conda search -c conda-forge snowflake-connector-python
but I have version locally …