pip install 遇到的问题】的更多相关文章

pip install Error OSX 终端更新pip出错 sudo pip install --upgrade pip : 1.ReadTimeoutError: HTTPSConnectionPool(host='pypi.Python.org', port=443): Read 解决办法: 加大超时时间,如 pip --default-timeout=100 install -U pip 2.如果依上处理还没解决问题,或者报错 ProtocolError: ("Connection b…
Exception: Traceback (most recent call last): File , in main status = self.run(options, args) File , in run root=options.root_path, File , in install requirement.uninstall(auto_confirm=True) File , in uninstall paths_to_remove.remove(auto_confirm) Fi…
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 install -i https://pypi.tuna.tsinghua.edu.cn/simple python-requests…
转到虚拟环境目录:yum install libxslt-devel libxml2-devel yum install python-devel pip install lxml…
1.sudo apt-get install libxml2-dev libxslt1-dev python-dev apt-get install libevent-dev pip install lxmlpip install pandas apt-get install libpng-devapt-get install libfreetype6-dev pip install matplotlibpip install astropy pip install tushare…
1. 要在~/.pip/pip.conf中添加源的地址. 2. 在运行pip install 命令的时候加上sudo -H…
初学Python各种版本问题,安装pip install lxml各种出错,解决方法:py -2 -m pip install wheel(PY3上我上个帖子已经标了),http://www.lfd.uci.edu/%7Egohlke/pythonlibs/ 在这里下载对应的.whl文件,注意别改文件名! 进入.whl所在的文件夹,执行命令即可完成安装.…
sudo pip install mysql-connector-python 报错信息:Collecting mysql-connector-python Could not find a version that satisfies the requirement mysql-connector-python (from versions: )No matching distribution found for mysql-connector-python 解决方案:wget https:/…
当pip install不能正确安装的时候,try easy_install 重复试了几次pip install -r requirements.txt,都在安装pillow的时候失败了,想找这个枕头真的不容易 easy_install Pillow==3.4.1 非常顺利 然而, TODO:easy_install 批量安装依赖包的时候咋整??…
这个是老问题了 pip install -i https://pypi.douban.com/simple/ selenium 类似的,npm和gem安装的时候可以使用淘宝源.…
建个文件 ~/.pip/pip.conf, 内容如下 [global] timeout = 6000 index-url = https://pypi.doubanio.com/simple [install] use-mirrors = true mirrors = https://pypi.doubanio.com/simple 上面的源绝对可用. 上面主要讲了mirror,另外的一个选择就是代理: $ pip install package --proxy=[代理地址] 顺便贴几个有用的P…
win7下 pip install robotframework-sshlibrar时提示: error: Microsoft Visual C++ 9.0 is required (Unable to find vcvarsall.bat). Get it from http://aka.ms/vcpython27 解决办法:安装Micorsoft Visual C++ Compiler for Python 2.7 下载地址:http://www.microsoft.com/en-us/do…
*: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…
ubuntu连接mysql 需要安装mysql-python 出现can not find mysql-config 文件错误 先安装 sudo apt-get install libmysqld-dev 安装后出现 linux-gcc错误 apt-get install python-dev 接下来执行安装 pip install mysql-python   安装成功…
执行pip install --upgrade pip 提示"PermissionError: [WinError 5] 拒绝访问",如下图,由于更新的用户权限不够,换成管理员运行cmd,再次更新就会成功.…
环境描述: Python 2.7.5 CentOS-7.2   报错现象: (1).在虚拟环境下运行 pip install 命令安装 PyPI 第三方库,出现类似如下告警. Running setup.py egg_info for package Werkzeug     no previously-included directories found matching 'docs/_build'     no previously-included directories found ma…
安装数据库第三方包,报错: Could not find a version that satisfies the requirement MySQLdb (from versions: )No matching distribution found for MySQLdb 将MySQLdb改成pyMySQL就OK啦:sudo pip install pyMySQL…
lxml是Python语言和XML以及HTML工作的功能最丰富和最容易使用的库.lxml是为libxml2和libxslt库的一个Python化的绑定.它与众不同的地方是它兼顾了这些库的速度和功能完整性.高效率解析Xpath,用于操作爬虫爬取网址url. 而在Windows中由于原始Python3的版本中并没有集成lxml库,在PyCharm中如果直接引用lxml库可能会出现Install Package Failed错误,并提示:error:Microsoft Visual C++10.0 i…
解决ubuntu的pip和apt-get太慢的问题 ubuntu国外龟速的源实在难受,还是自己动手更改一下各种pip 源和apt-get 的源吧,换了之后速度令人舒适! 更换pip源成清华源 临时使用: 可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple例如 pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple 这样就从清华这边的镜像去安装open…
pip install <包名> 或 pip install -r requirements.txt 通过使用 == >= <= > < 来指定版本,不写则安装最新版. 列如: # requirement.txt numpy torch>=0.4.0…
需要先删除PIL再进行安装 sudo pip uninstall -y PIL 删除PIL相关文件夹:/usr/local/bin/pil , usr/lib/python2.7/dist-packages/PIL , /usr/share/pyshared/PIL apt-get install libfreetype6-dev pip install PIL…
只需要python -m pip install --user --upgrade pip==9.0.3 只需要加一个--user…
折腾了一上午flask部署,到最后访问域名还是出现Application Error错误提示.估计是程序还有问题,想着直接clone书中作者的代码先试试能不能部署成功.结果在执行pip install -r requirements.txt的过程中老在最后一步安装psycopg2这个包的过程中出错,遂Google之,得到提示大概是缺少Python相关库. 遂执行: sudo apt-get install -y python-dev sudo apt-get install -y libpq-d…
参考 How to use pip with socks proxy? 为 pip install 设置 socks5 代理 设置方法: pip install pysocks pip install -r requirements.txt --proxy='socks5://127.0.0.1:1080' 2019.1…
今天运行程序的时候出现了: You are using pip version 10.0.1, however version 18.1 is available.You should consider upgrading via the 'python -m pip install --upgrade pip' command. 对于很少用python的我,瞬间蒙了,尝试了很多方法之后才解决.希望分享给大家,我的解决方法吧 You are using pip version 10.0.1, h…
之前在本地安装过kubernetes的python库,安装下来一切正常,但今天换到测试机器上去部署,确保错了,具体步骤如下. 第一步,克隆代码,执行以下命令:    # git clone --recursive https://github.com/kubernetes-client/python.git (因为测试机无法连到github,这一步是通过我本地下载后scp到测试机上的)  第二步,进入python文件夹,执行以下命令安装:   # pip install setup.py 安装报…
首次在mac os 下,用pip install MySQL-Python时经常出现如下错误: sh: mysql_config: command not foundTraceback (most recent call last):  File "setup.py", line 15, in <module>    metadata, options = get_config()  File "/Users/***/Downloads/MySQL-python-…
生成文件 pip freeze > requirements.txt pip install --help Usage: pip install [options] <requirement specifier> [package-index-options] ... pip install [options] -r <requirements file> [package-index-options] ... pip install [options] [-e] <v…
Failed building wheel for Twisted inculde/site/python3./Twisted failed with error code in tmp/pip-install-y4-0q..... sudo apt-get install build-essential libssl-dev libffi-dev python3.5-dev# 或者 sudo aptitude install python3.5-dev pip install scrapy 搞…