对应模块:
https://github.com/happynear/py-leveldb-windows 访问地址 往下拉 找到对应位置
py-leveldb-windows
用于构建 leveldb python 包装器的 Visual Studio 项目
预构建的二进制文件
放入leveldb.pyd
文件夹YOUR_PYTHON_ROOT/Lib/site-packages
。
运行python ./test-py-leveldb.py
(python2) 或python ./test-py3-leveldb.py
(python3)。如果一切正常,您将收到hello world
响应和一个名为db
.
用法
-
将编译模式更改为 Release X64。
-
修改设置中的python路径(Additional Include Directories、Additional Library Directories、Additional Dependencies)。
-
编译
-
复制
./x64/Release/leveldb.pyd
到YOUR_PYTHON_ROOT/Lib/site-packages
. -
运行
python ./test-py-leveldb.py
。如果一切正常,您将收到hello world
响应和一个名为db
.
使用 Python3 编译
-
更改设置中的 python 路径(附加包含目录、附加库目录、附加依赖项)。
-
使用此版本
leveldb.def
替换/win32_impl_src/leveldb.def
:https ://github.com/happynear/py-leveldb-windows/blob/5fa0361a46ef0a75123ea785bdb15af1b2e64600/win32_impl_src/leveldb.def 。
测试 :