instructions for installing some python's pkgs on ubuntu

make sure python-dev, gcc and other stuff have resided on the machine.

 

cython..

 

run sudo python setup.py install

 

is enough...

 

cx_freeze

 

if no ssl install libssl firstly

 

sudo apt-get install libssl-dev

 

and then

 

run sudo python setup.py install...

 

 

numpy..

 

python setup.py install is ok

 

numexpr

 

python setup.py install (numpy is required)

 

pytables..

 

firstly... build hdf5 from source...

 

and then build pytables...when running with this toy, make sure hdf5.so is in your loading path.

 

 

你可能感兴趣的:(Install)