centos7 一鍵升級 python3

原作者:https://github.com/LunacyZeus/Python3.6-for-Centos7.0

Python3.6-for-Centos7.0

這個腳本能讓你在Centos7.0下搭建Python3.6開發環境(與網上的不同,這個包含許多必需庫,不會中途再次重新編譯)

使用教學:

wget --no-check-certificate https://raw.githubusercontent.com/LunacyZeus/Python3.6-for-Centos7.0/master/install.sh && sh install.sh

修改後yum不可用解:

nano /usr/bin/yum 然后将首行的 #!/usr/bin/python 改为 #!/usr/bin/python2.6.6

原始碼:

解決 python3 requests headers 參數不能有中文

from urllib import parse 
str1 = 'haha哈哈'   
str2 = parse.quote(str1)   #quote()将字符串进行编码   
print(str2)                #str2=haha%E5%93%88%E5%93%88

 

原文連結:https://blog.csdn.net/RAPIER512/article/details/79761593

用uwsgi配置nginx反代python應用

用python語言開發的web應用不像php那樣,可以直接放到目錄下就能訪問,需要配置python環境下的web服務,然後為了統一域名和端口的使用,可以再用nginx配置一下,以對外提供訪問:

nginx設定如下:

訂閱@標題