在Ubuntu上安装 h5py
直接利用 sudo pip install h5py 首先出现没有cython;安装完cython后会提示一个g++错误,这是由于没有安装hdf5;安装完hdf5再安装h5py就能够成功安装。
安装h5py的命令如下:
sudo pip install cython
sudo apt-get install libhdf5-dev
sudo pip install h5py
安装完成后可以用如下命令测试:
import h5py
在Ubuntu上安装leveldb
1.先按照依赖,执行以下命令
sudo apt-get install devscripts debhelper libsnappy-dev
2.下载leveldb的源码,利用wget命令
wget https://github.com/google/leveldb/archive/v1.19.zip
3. 解压,利用unzip
unzip v1.19.zip &&cd leveldb-1.19/
4. 在leveldb-1.19目录中执行 “make”,编译好leveldb,会在当前目录生成一个目录“out-shared”
5. 执行一下命令
cd ../out-shared/
sudo mv libleveldb.* /usr/local/lib
cd ../include/
sudo cp -R leveldb /usr/local/include
sudo ldconfig
执行到此,leveldb安装完成,下面来测试一下(Python)
pip install leveldb
进入到ipython环境
import leveldb
db = leveldb.LevelDB('./db')
# single put
db.Put('hello','world')
print db.Get('hello')
# single delete
db.Delete('hello')
print db.Get('hello')
# multiple put/delete applied atomically,and committed to disk
batch = leveldb.WriteBatch()
batch.Put('hello','world')
batch.Put('hello again','world')
batch.Delete('hello')
db.Write(batch,sync = True)
如何安装egg文件呢?
用easy_install安装就可以了,安装之前需要Python-setuptools,
然后再安装egg文件就用如下命令就可以了,假设egg文件的文件名是xxx.egg
- easy_installxxx.egg