Last active
September 1, 2018 10:19
-
-
Save capaj/2971a08b4bd82b48656d5e8b08f8e807 to your computer and use it in GitHub Desktop.
installing pgloader on amazon linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum -y install yum-utils rpmdevtools @development-tools sbcl sqlite-devel zlib-devel | |
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm | |
sudo rpm -Uvh epel-release-6*.rpm | |
sudo yum install -y sbcl.x86_64 | |
wget http://downloads.sourceforge.net/project/sbcl/sbcl/1.3.14/sbcl-1.3.14-source.tar.bz2 | |
tar xfj sbcl-1.3.14-source.tar.bz2 | |
cd sbcl-1.3.14 | |
./make.sh | |
sudo sh install.sh | |
sbcl --version | |
sudo yum remove -y sbcl | |
sudo ln -s /usr/local/bin/sbcl /usr/bin/sbcl | |
sbcl --version | |
make pgloader | |
./build/bin/pgloader --help | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
on line 14 i got this issue.