Mac下安装PostgreSQL,可以使用brew,不过下载要翻墙好麻烦。还有一个方便的方法,就是使用Postgres.app(图标就是下面这个漂亮的大象了)。
Postgres.app is a full-featured PostgreSQL installation packaged as a standard Mac app. It includes everything you need to get started: we’ve even included popular extensions like PostGIS for geo data and plv8 for Javascript.
漂亮的大象使用方法很简单,下载dmg文件,然后拖到Application里面,双击运行,然后再点应用窗口里面的initialize,自动生成数据库。最后就用你的系统用户名,空密码就可以登录了。
安装pg的gem:
gem install pg -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/9.6/bin/pg_config
客户端的话,使用pgAdmin,https://www.pgadmin.org/,就可以像用Mysql一样使用pg了。
最后附上ruby-pg的网站:
https://bitbucket.org/ged/ruby-pg/wiki/Home
网友评论