Last active
July 22, 2024 18:51
-
-
Save dustismo/6203329 to your computer and use it in GitHub Desktop.
How to install leveldb on ubuntu
This file contains 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 apt-get install libsnappy-dev | |
wget https://leveldb.googlecode.com/files/leveldb-1.9.0.tar.gz | |
tar -xzf leveldb-1.9.0.tar.gz | |
cd leveldb-1.9.0 | |
make | |
sudo mv libleveldb.* /usr/local/lib | |
cd include | |
sudo cp -R leveldb /usr/local/include | |
sudo ldconfig |
Actually when you clone leveldb , there is no more a makefile, so the steps are true @nextkitt but need to add some commands to generate the makefile first !
What commands are required to generate the (missing) makefile?
you can install leveldb on ubuntu using libleveldb-dev instead. Work for me:
sudo apt-get install libleveldb-dev
sudo apt-get install python3-pip python3-dev && python3 -m pip install -U leveldb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks for your help!