LoginSignup
0
0

More than 5 years have passed since last update.

postgresql in jupyter

Posted at
pip install ipython-sql
conda install psycopg2

brew install postgresql
echo 'export PGDATA=/usr/local/var/lib/pgsql/data' >> ~/.zshrc
source ~/.zshrc
initdb
brew services start postgresql

jupyter-console

%load_ext sql
%sql postgresql://@localhost/postgres
# => 'Connected: @postgres'

%sql create table test_table (id int, name text)
%sql insert into test_table values (1, 'a'), (2, 'b')
df = %sql select * from test_table
df
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0