How to install leveldb on Windows (Python)
问题 I try (Python 2.7.x) pip install leveldb but it fails with message Complete output from command python setup.py egg_info: Don't know how to compile leveldb for Windows! Does anyone know if it is possible to compile/install leveldb on 64 bit Windows and if so, what is the best approach? 回答1: Seems to be possible with https://github.com/happynear/py-leveldb-windows py-leveldb-windows: A Visual Studio project to build leveldb python wrapper. 来源: https://stackoverflow.com/questions/45024809/how