项目地址:https://github.com/wangshub/wechat_jump_game
1.问题:
在安装依赖文件这个步骤中
pip install -r requirements.txt
卡了很长时间,报如下错误:
DEPRECATION: Uninstalling a distutils installed project (numpy) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
Uninstalling numpy-1.8.0rc1:Exception:Traceback
2.原因
本来下载依赖速度就慢,还老出错,特别耽误时间,最后查到:
Mac系统10.11及以上升级numpy、scipy等python包报错解决方案
里面说明了原因为:简单说就是10.11及以上系统增加了一个SIP的东西,就是它的权限拒绝,然后就没有然后了。
详细点就是:经历了XCode编译器代码被注入的事件后,这次 Mac OS X El Capitan系统的升级,启用了更高的安全性保护机制:系统完整性保护System Integrity Protection (SIP)。简单来讲就是更加强制性的保护系统相关的文件夹。开发者不能直接操作相关的文件内容。
3.解决方法
解决问题的方法就是关闭Mac系统的“SIP“
具体的操作步骤,引用国外的一个牛人给出的方法:
How to turn off SIP(System Integrity Protection) in El Capitan
翻译是copy的
* 点击Mac电脑的苹果图标
* 选择 重新启动
* 按住 command+R,直到进入还原模式
* 选择实用工具,然后点击 终端
* 输入 csrutil disable 按下回车
* 重启电脑
这样就将“SIP“关闭了。
然后我们使用 pip 安装升级numpy、scipy等相关的包。