pip 错误unused-command-line-argument-hard-error-in-future解决办法


Posted in Python onJune 01, 2014

在我的Mac Air上,用pip安装一些Python库时,偶尔就会遇到一些报错,关于“unused-command-line-argument-hard-error-in-future”,错误如下:

cc -fno-strict-aliasing -fno-common -dynamic -arch x86_64 -arch i386 -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wstrict-prototypes -Wshorten-64-to-32 -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch x86_64 -arch i386 -pipe -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c psutil/_psutil_osx.c -o build/temp.macosx-10.9-intel-2.7/psutil/_psutil_osx.o
clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
error: command 'cc' failed with exit status 1

这样的错误,出现次数多了,每次都去google,不如自己记录一下吧。
原因是:The Apple LLVM compiler in Xcode 5.1 treats unrecognized command-line options as errors. This issue has been seen when building both Python native extensions and Ruby Gems, where some invalid compiler options are currently specified.

解决方法:设置ARCHFLAGS参数,如下:

sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install psutil
Python 相关文章推荐
用Python计算三角函数之atan()方法的使用
May 15 Python
CentOS安装pillow报错的解决方法
Jan 27 Python
网站渗透常用Python小脚本查询同ip网站
May 08 Python
flask中使用蓝图将路由分开写在不同文件实例解析
Jan 19 Python
django模板加载静态文件的方法步骤
Mar 01 Python
Python 3 判断2个字典相同
Aug 06 Python
Python之数据序列化(json、pickle、shelve)详解
Aug 30 Python
基于Python实现船舶的MMSI的获取(推荐)
Oct 21 Python
flask框架蓝图和子域名配置详解
Jan 25 Python
python中使用input()函数获取用户输入值方式
May 03 Python
Python 实现集合Set的示例
Dec 21 Python
pytorch锁死在dataloader(训练时卡死)
May 28 Python
2款Python内存检测工具介绍和使用方法
Jun 01 #Python
使用Python的Supervisor进行进程监控以及自动启动
May 29 #Python
python应用程序在windows下不出现cmd窗口的办法
May 29 #Python
python正则表达式re模块详细介绍
May 29 #Python
在python中的socket模块使用代理实例
May 29 #Python
python中stdout输出不缓存的设置方法
May 29 #Python
python两种遍历字典(dict)的方法比较
May 29 #Python
You might like
php性能优化分析工具XDebug 大型网站调试工具
2011/05/22 PHP
windows中为php安装mongodb与memcache
2015/01/06 PHP
浅谈使用PHP开发微信支付的流程
2015/10/04 PHP
php单例模式的简单实现方法
2016/06/10 PHP
PHP实现的大文件切割与合并功能示例
2018/04/10 PHP
javascript Keycode对照表
2009/10/24 Javascript
jquery插件之easing使用
2010/08/19 Javascript
JavaScript 字符串处理函数使用小结
2010/12/02 Javascript
js自动生成的元素与页面原有元素发生堆叠的解决方法
2013/10/24 Javascript
JavaScript实现表格快速变色效果代码
2015/08/19 Javascript
纯JavaScript代码实现移动设备绘图解锁
2015/10/16 Javascript
jQuery Uploadify 上传插件出现Http Error 302 错误的解决办法
2015/12/12 Javascript
IE6-IE9使用JSON、table.innerHTML所引发的问题
2015/12/22 Javascript
jquery.cookie实现的客户端购物车操作实例
2015/12/24 Javascript
javascript数组对象常用api函数小结(连接,插入,删除,反转,排序等)
2016/09/20 Javascript
Vue中v-show添加表达式的问题(判断是否显示)
2018/03/26 Javascript
详解Vue内部怎样处理props选项的多种写法
2018/11/06 Javascript
node.js 基于cheerio的爬虫工具的实现(需要登录权限的爬虫工具)
2019/04/10 Javascript
如何让微信小程序页面之间的通信不再变困难
2019/06/03 Javascript
简谈创建React Component的几种方式
2019/06/15 Javascript
[01:41]DOTA2 2015国际邀请赛中国区预选赛第三日战报
2015/05/28 DOTA
Python爬取国外天气预报网站的方法
2015/07/10 Python
使用phonegap创建联系人的实现方法
2017/03/30 HTML / CSS
Canvas 像素处理之改变透明度的实现代码
2019/01/08 HTML / CSS
英国护肤品购物网站:Beauty Expert
2016/08/19 全球购物
Hotels.com泰国:酒店预订网站
2019/11/20 全球购物
口腔工艺技术专业毕业生自荐信
2013/09/27 职场文书
创先争优制度
2014/01/21 职场文书
忠诚与背叛观后感
2015/06/04 职场文书
学校运动会简讯
2015/07/20 职场文书
2015年文秘个人工作总结
2015/10/14 职场文书
承诺书的签字人,需不需要承担相应的责任?
2019/07/09 职场文书
导游词之长城八达岭
2019/09/24 职场文书
mysql函数全面总结
2021/11/11 MySQL
Java中Quartz高可用定时任务快速入门
2022/04/03 Java/Android
html,css,javascript是怎样变成页面的
2023/05/07 HTML / CSS