PG pg_ext load error in rails

2020-02-28 05:38发布

I recently updated to rails 4.1.6 and ruby 2.1.3p242. I also updated all gems on my system. After creating a new app, I keep getting a pg_ext load file error on running the server. I'm on windows 8 x64 with PostgreSQL 9.3. The pg gem was working fine under my previous RoR installation which was rails 3.2 and ruby 1.9.3.

Under the gem's installation directory, I've a 2.0/pg_ext.so file. I tried renaming the folder to 2.1 and ran the server. The result was the same. I assume it's cause Ruby doesn't allow to Require a .so file. Below is the screenshot of the error:

enter image description here

Any help would be really appreciated. Thanks!

2条回答
We Are One
2楼-- · 2020-02-28 06:38

1) In the command line enter:

gem install pg --pre
gem list pg

2) In the Gemfile set the gem to the newly installed version:

gem 'pg', '~> 0.18.2'
查看更多
够拽才男人
3楼-- · 2020-02-28 06:40

Posted question on the official Gem page:

https://bitbucket.org/ged/ruby-pg/issue/192/pg_ext-load-error

As per the suggestion, I installed the pre-version of the next release. That gave me another error which was solved using:

https://github.com/tzinfo/tzinfo/wiki/Resolving-TZInfo::DataSourceNotFound-Errors TZInfo::DataSourceNotFound error starting Rails v4.1.0 server on Windows

Posting the answer to help people facing similar problems in the future.

查看更多
登录 后发表回答