研究SVM时安装的一些工具的方法

  本文是个人存档,不介绍研究SVM相关内容。

1.bamboo在fedora19下

  哪一行编译时报错,就注释掉

  php插件不用装

  提示ERROR: libcrfpp.so.0: cannot open shared object file: No such file or directory需要执行:ln -s /usr/local/lib/libcrfpp.so.* /usr/lib/

2.安装easy_install:

python常用

https://pypi.python.org/pypi/setuptools#downloads

> wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py
> python ez_setup.py --user

3.安装flup

wget http://pypi.python.org/packages/2.5/f/flup/flup-1.0-py2.5.egg#md5=3c9368437e9bffb950c6cce54425d32f

easy_install flup-1.0-py2.5.egg 

4.安装uwsgi

http://uwsgi-docs.readthedocs.org/en/latest/WSGIquickstart.html

5.安装web.py

http://emailwyc.blog.163.com/blog/static/21322401020121049949403/

搭建

http://emailwyc.blog.163.com/blog/static/21322401020121049949403/

一定要按此文中方式开启uwsgi,官网上不是这样的!

uwsgi -s 127.0.0.1:9000 -w webpytest

http://blog.csdn.net/ffb/article/details/1794707

6.安装BeautifulSoup

easy_install beautifulsoup4

7.安装jieba分词

9.安装cherrypy

原文地址:https://www.cnblogs.com/wuyuegb2312/p/3472160.html