专注 K8S研究
发布时间:2018-12-29 14:38:27
例如 pip install flask如果你的网络是通过代理,还需要输入密码运行 pip install --proxy http://username:password@proxyIP:proxyPort flask就可以了username 为你的用户名password 为你的密码proxyIP 为你的代理地址proxyIP 为你的代理端口号.........【阅读全文】
发布时间:2018-12-28 17:55:41
cd Python-3.6.5./configure --prefix=/usr/local/python3 --enable-sharedmake & make installln -s /usr/local/python3 /bin/python3 /usr/bin/python3......【阅读全文】
发布时间:2018-12-28 17:19:44
由于python3的urllib与python2有不少差别,而且urllib.request请求的一些写法不太符合人的思维习惯(文档也相当难看) 适用于python2.6、python2.7、python3.4及以上版本,参见官方说明。 下边对于https的链接请求时会带上”verify=False“参数,因为默认Python会进行证.........【阅读全文】