1、環境準備php
easy_insall的做用和perl中的cpan,ruby中的gem相似,都提供了在線一鍵安裝模塊的傻瓜方便方式,而pip是easy_install的改進版,提供更好的提示信息,刪除package等功能。老版本的python中只有easy_install,沒有piphtml
easy_install下載與安裝參照python
https://pypi.python.org/pypi/setuptools#using-setuptools-and-easyinstalllinux
查看easy_install 使用幫助nginx
easy_install —help
pip下載與安裝參照
https://pypi.python.org/pypi/pip
flask下載:
wget 文件地址
解壓:tar -xvf xxx.tar.gz
安裝:python setup.py install
ubuntu
$ sudo pip install virtualenv
使用ruby
$ mkdir myproject $ cd myproject $ virtualenv venn New python executable in venv/bin/python Installing distribute............done.
如今,只要你想要在某個項目上工做,只要激活相應的環境。在 OS X 和 Linux 下,按以下作:bash
$ . venv/bin/activate
若是你是個 Windows 用戶,下面的命令行是爲你準備的:工具
$ venv\scripts\activate
2、升級Python2.6.* 到Python2.7.*
升級後easy_install 和pip 須要從新安裝
3、uWSGI 與Nginx配置 參照
http://www.nowamagic.net/academy/detail/1330331
http://www.phpgao.com/nginx_uwsgi_flask.html
http://www.oschina.net/translate/serving-flask-with-nginx-on-ubuntu
http://www.nginx.cn/591.html