解决办法: pip install pymysql -i http://pypi.douban.com/simple --trusted-host pypi.douban.com…
我们使用Django.flask等来操作MySQL,实际上底层还是通过Python来操作的.因此我们想要用Django来操作MySQL,首先还是需要安装一个驱动程序.在Python3中,驱动程序有多种选择.比如有pymysql以及mysqlclient等. 常见的Mysql驱动介绍: MySQL-python:也就是MySQLdb.是对C语言操作MySQL数据库的一个简单封装.遵循了Python DB API v2.但是只支持Python2,目前还不支持Python3.mysqlclient:是…
当pip install不能正确安装的时候,try easy_install 重复试了几次pip install -r requirements.txt,都在安装pillow的时候失败了,想找这个枕头真的不容易 easy_install Pillow==3.4.1 非常顺利 然而, TODO:easy_install 批量安装依赖包的时候咋整??…
*:first-child { margin-top: 0 !important; } body > *:last-child { margin-bottom: 0 !important; } a { color: #4183C4; } a.absent { color: #cc0000; } a.anchor { display: block; padding-left: 30px; margin-left: -30px; cursor: pointer; position: absolute…
用pip install升级已安装的附加包, 以tabulate包为例 去pypi官网查看tabulate包的介绍, 发现tabulate 0.7.6才开始支持宽字符的美化打印. 而且还需要安装它的附加包: widechars 然而我的机器里的tabulate的版本是0.7.5. 下面是升级步骤以及log记录: pip install --upgrade tabulate pip install tabulate[widechars] C:\Documents and Settings\Admi…
1.在网址 http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml 下,搜索lxml,下载Python对应的lxml版本.如下图: 2.打开cmd,进入到lxml下载的文件夹,运行如下命令(注意:一定要下载Python对应的lxml版本): pip install lxml-3.6.4-cp34-cp34m-win32.whl 安装成功后,如下图: 3.参考链接: https://www.webucator.com/blog/2015/03/how-to-…
先 pip list 看看包的具体名字是什么,然后 pip uninstall **包名** ===== 打印出有新版本的包: pip list --outdated --format=freeze 如果一次升级所有过期的包: $ pip install pip-review $ pip-review --local --interactive 单独升级某个包: pip install *** --upgrade ================ 查看包的版本的方法: pip freeze |…
这是安装时报错的最后几行 creating build\temp.win-amd64-3.5\Release\build creating build\temp.win-amd64-3.5\Release\build\temp.win-amd64-3.5 creating build\temp.win-amd64-3.5\Release\build\temp.win-amd64-3.5\Release C:\Program Files (x86)\Microsoft Visual Studio…
错误如下: error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools 安装C++环境即可.以下是工具:下载后选择自定义安装,勾选第2个win10的和最后一个.netframework即可: https://pan.baidu.com/s/1ws…
之前在本地安装过kubernetes的python库,安装下来一切正常,但今天换到测试机器上去部署,确保错了,具体步骤如下. 第一步,克隆代码,执行以下命令:    # git clone --recursive https://github.com/kubernetes-client/python.git (因为测试机无法连到github,这一步是通过我本地下载后scp到测试机上的)  第二步,进入python文件夹,执行以下命令安装:   # pip install setup.py 安装报…