PostgreSQL - pgloader installation in OS X
Granted... this is a dumb question, but it's still a mystery to someone like me, whose never done it before... I'm trying to install pgloader, but I can't seem to find any documentation.... I'm running MAMP on MAC OS X. I've already installed the tcllib, and am about to do:
开发者_StackOverflow中文版wget http://pgfoundry.org/frs/download.php/233/pgloader-1.0.tar.gz tar zxvf pgloader-1.0.tar.gz
I'm wondering what directory I need to actually untar pgloader into? Is there anything else that I need to do to get it to work?
There's a much easier way: install the Mac package from the downloads page.
Update
This appears to have changed. You can now install it using homebrew:
brew install pgloader
From what I could gather (YMMV):
You can always do
tar xzvf pgloader-1.0.tar.gz
(for any tar archives) to see what's in.
If python is setup you should be able to use from the created folder.
If you intend to import or run from anywhere then make sure its on pythons path.
Here's an even simpler explanation of installing Pgloader using brew:
http://macappstore.org/pgloader/
精彩评论