Last active
June 19, 2020 10:35
-
-
Save nnzo/ba9ceec96135aea5940963667adedc15 to your computer and use it in GitHub Desktop.
Install libdb4.8
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
| # Make sure unzip, make etc are installed | |
| wget http://download.oracle.com/berkeley-db/db-4.8.30.zip | |
| unzip db-4.8.30.zip | |
| cd db-4.8.30 | |
| cd build_unix/ | |
| ../dist/configure --prefix=/usr/local --enable-cxx | |
| make | |
| make install | |
| # You might need to run export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" after |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment