Open jsmorph opened 1 year ago
I'm not sure what's causing this, but it looks like it's related to SQLAlchemy version 2.0.0. As a temporary workaround, I added !pip install SQLAlchemy==1.4.46
before %load_ext sql
, which fixed the problem.
Thanks very much for the quick fix.
FWIW, I'm now pinning versions like this in Colab:
!pip install SQLAlchemy==1.4.46
!pip install PyMySQL==1.0.2 # or whichever
!pip install ipython-sql==0.4.1
Same problem here, but when I install SQLAlchemy 1.4.46 it does not help. In my case I'm running a local jupyterlab (version 3.6.1).
Same issue, pinning sqlAclhemny or ipython-sql does not work.
@tjerkw and @rwarren, did you restart the runtime after the pinned pip install
s? When I do these installs and then restart the runtime, things work. (Menu: Runtime -> Restart runtime.)
@jsmorph I thought I had restarted, but apparently not! After a fresh reboot today, this is is working perfectly fine after installing SQLAlchemy==1.4.46
. 👍
Connecting like
now produces:
This error started happening in the last 24 hours.
Ideas?