问题 pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. 本人使用 Cmder 使用 python ,无需写环境变量 set PATH=%ConEmuBaseDir%\Scripts;%PATH%;C:\Users\admin\AppData\Local\Libssl alias py2=C:\Users\admin\Miniconda2…
Centos6.7系统,python3.6.7,通过 pip 安装pycurl出现报错: __main__.ConfigurationError: Could not run curl-config: [Errno 2] No such file or directory: 'curl-config': 'curl-config' 系统已经安装了curl,出现此错误提示一般是因为没有安装对应的开发库,解决方法: yum -y install libcurl-devel…
操作环境   Python3.6 + Winodws7 问题现象 新安装python3.6版本后使用pip安装第三方模块失败,报错信息如下: C:\Users\linyfeng>pip install lxml Collecting lxml Downloading http://pypi.doubanio.com/packages/fb/41/b8d5c869d01fcb77c72d7d226a847a3946034ef19c244ac12920b71cd036/lxml-3.8.0-cp36…
python下载.whl安装文件后使用pip安装有时候会提示报错"xxxxx not a supported wheel on this platform",应该是下载的库文件版本与当前运行的python不一致,重新下载安装包即可. 一般第三方库都会同时支持好几个python版本和环境,如何正确选择下载的安装包呢?例如安装OpenCV第三方库,官网上有这么多安装文件: 可以通过以下方法查看应该下载怎么样的安装文件: 打开DOS命令行,进入python交互界面: C:\Python36\…
>在DOS窗口中到Python安装路径的scripts中执行  pip install pyperclip 出现错误 >>错误提示:Fatal error in launcher: Unable to create process using '"' >解决办法 >>在DOS根目录中执行: python3 -m pip install pyperclip…
原因是pip安装Python包会加载我的用户目录,我的用户目录恰好是中文的,ascii不能编码.解决办法是: python目录 Python27\Lib\site-packages 建一个文件sitecustomize.py 内容写: import sys sys.setdefaultencoding('gb2312') python会自动运行这个文件. 按照这个方法搞了,结果还是不行,然后把 gb2312 换成 gbk, 果断搞定 转载于:http://blog.csdn.net/comput…
Ubuntu 18.04 上 使用 pip 安装 opencv-python,出现的错误如下: 1 ~$: pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple 2 DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no lon…
这个题目起得很洋气啊,其实问题也比较好解决,但是我想多码几个字!!! 友情提示:如果不想看废话,请直接看最后的红字! 好的,咱们从头说(废话)起.话说我们学院每年都会组织大三的进行校企联合实训(其实就是达内和华迪的培训,相当水),有Unix C,VC++,Android和JavaEE,我当时觉得UC很NewB啊,毅然决然就选了UC,当时达内的人说的很高大上,什么什么数据挖掘系统,其实也没用到什么算法之类的,都是基本操作,就一个socket编程还新鲜点,其他都是平常作业做过的. 然后,达内提供了V…
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=4…
来自:https://www.zhihu.com/question/26857761 解决步骤: 1. 安装wheel,命令行运行: pip install wheel 2.在这里下载对应的.whl文件,注意别改文件名! http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml Ctrl + F,输入lxml,找到下面这段 cp后面是Python的版本号,27表示2.7,根据你的Python版本选择下载. 本人是windows64位系统,python3.5,…