专注 K8S研究
发布时间:2018-12-29 16:48:12
Pip 是对easy_install的取代,提供了和easy_install相同的查找包的功能,因此可以使用easy_install安装的包也同样可以使用pip进行安装。pip国内的一些镜像??阿里云 http://mirrors.aliyun.com/pypi/simple/ ??中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ ??豆瓣(douban)&n.........【阅读全文】
发布时间:2018-12-29 15:44:06
例如:pip3 download requests -d /tmp/py3Collecting requests Using cached https://files.pythonhosted.org/packages/7d/e3/20f3d364d6c8e5d2353c72a67778eb189176f08e873c9900e10c0287b84b/requests-2.21.0-py2.py3-none-any.whl Saved /tmp/py3/requests-2.21.0-py2.py3-none-any.whlCollecting certi.........【阅读全文】
发布时间: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......【阅读全文】