感谢您的帮助!
我尝试将json从jupyter笔记本发送到postgres。我使用了另一个程序员提供的一段代码,如下所示。
import ...
dbconn = pg.connect(PG_CONN_STRING)
...
然后它说代码的最后一行出了错:
OperationalError: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5433"?
我以前使用psql
在ubuntu终端中输入postgres时遇到了这种情况。当时,我通过重新启动postgres解决了它。但是,我不知道在jupyter笔记本中做什么。
谢谢!