Hi all, I'm having trouble with compatability of v...
# ask-community
m
Hi all, I'm having trouble with compatability of v.2.14.12. Here is the situation. I'm using conda, and run the follow commands:
conda create --name prefect-240122 python=3.9.16 or 3.11.7 (I've tried with both of these versions of python)
conda install pandas
conda install geopandas
conda install psycopg2
conda install sqlalchemy
This environment on its own functions just fine, but when I add the Prefect package per below it does not work:
conda install -c conda-forge prefect=2.14.12
Does anyone have any insight as to comptability of this version of Prefect with the packages noted?
1
Was able to resolve with the following:
conda create --name alpha python=3.9.18
conda install conda-forge::pandas
conda install conda-forge::geopandas
conda install conda-forge::psycopg2
conda install conda-forge::sqlalchemy
conda install -c conda-forge prefect=2.14.12