You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have set up an environment in Anaconda and everything (SQLAlchemy, ipython-sql, pgspecial etc) is installed in this environment except for PostgreSQL. I am able to do everything SQL related in Jupyter Notebook except for running meta-commands like \d.
When I run this -
%sql \d
This raises ImportError: pgspecial not installed. However, running import pgspecial or from pgspecial.main import PGSpecial commands immediately after this raises no issue.
I have even tried installing pgspecial at global level, but I am still getting same error.
How to resolve this issue?
The text was updated successfully, but these errors were encountered:
I have set up an environment in Anaconda and everything (SQLAlchemy, ipython-sql, pgspecial etc) is installed in this environment except for PostgreSQL. I am able to do everything SQL related in Jupyter Notebook except for running meta-commands like \d.
When I run this -
This raises
ImportError: pgspecial not installed
. However, runningimport pgspecial
orfrom pgspecial.main import PGSpecial
commands immediately after this raises no issue.I have even tried installing pgspecial at global level, but I am still getting same error.
How to resolve this issue?
The text was updated successfully, but these errors were encountered: