背景: 学习python开发中,需要用到pygame插件,因此按照参考书<Python编程实践,从入门到实践>指引安装Pygame包. 但是利用pip 命令安装 .whl 文件时,报错(如下图所示): [上图命令行是在win10的cmd下,运行的.] 按照提示,当前系统的pip比较陈旧需要更新,于是便运行了python -m pip install --upgrade pip 命令开始更新pip 成功更新后会显示下列结果 然后去 https://www.lfd.uci.edu/~gohlke/…
Pycharm安装package报错:AttributeError: module 'pip' has no attribute 'main' 确认pip已经升级到目前最新版本了. 在网上搜寻后,解决步骤如下: ①找到pycharm安装目录下helpers/packaging_tool.py文件 ②找到如下代码:  修改为:注意,圈中的为修改的代码. ok,通过上述解决步骤后,在pycharm再次安装即可成功安装.…
报错: You are using pip version 10.0.1, however version 18.0 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command. Win+R 输入 cmd 回车,运行了 python -m pip install --upgrade pip 即可.     虽然网络很慢,你看到了,6.8kB/s 在 Anacon…
我已经升级到了最新的版本 安装其他模块过程中出现下面提示,便说明你需要升级pip You are using pip version 10.0.1, however version 21.3.1 is available.You should consider upgrading via the 'python -m pip install --upgrade pip' command 当在下面出现Success,那么恭喜你安装成功. 失败的看这里: 失败的首先可以尝试更换升级指令,例如: py…
python下载python安装包 https://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame 下载完后进入cmd命令行执行安装,报错: pygame-1.9.4-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.Storing debug log for failure in C:\Users\yinrongwei\pip\pip.log 解决办法:在python的sh…
pip安装selenium,pip install selenium 类型这样错误 1  原因可能不是以管理员身份运行cmd安装selenium 2  解决方式 也是要管理员身份运行 重点在最后一句 You are using pip version 9.0.1, however version 19.0.3 is available.You should consider upgrading via the 'python -m pip install --upgrade pip' comma…
go搭建beego框架 go安装bee报错 go使用beego框架的时候,需要安装bee,安装的时候遇到一些坑报错,这里跟大家分享一下,有助于快速安装bee,搭建好beego环境 1. 首先切换到gopath目录下: cd $GOPATH 2. 创建一个测试目录,用来安装bee用: mkdir test cd test 3. 初始化mod: go mod init test 4. 打开go.mod,更改内容,vim go.mod: module test replace github.com/b…
问题 CentOS 8 yum安装软件时,提示无法从AppStream下载 [root@C8-3 ~]# yum -y install httpd mariadb-server mariadb php php-mysql Repository AppStream is listed more than once in the configuration Repository extras is listed more than once in the configuration Reposito…
安装scrapy框架报错是常见问题 还好,本人只碰到其中一个bug,以下是此次安装经验 环境 py3.4 windows7 64位 安装有VS2010 pip包管理(pycharm) 报错信息 安装lxml过程中报错:error: command 'D:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\BIN\\cl.exe' failed with exit status 2 原因:安装过程中调用VS2010的编译.连接相关功能报…
转载至:https://blog.csdn.net/qq_41185868/article/details/80599336 感谢原作者的分享 解决思路:这可能是由包Enum34引起的.因为Python3.4有一个标准库枚举模块,所以您应该卸载Enum34,因为在Python3.6中添加了Enum.Intflag,所以它不再与标准库中的枚举兼容. 解决办法:pip uninstall enum34   #卸载enum34…