pip 错误unused-command-line-argument-hard-error-in-future解决办法
程序员文章站
2023-11-20 13:21:46
在我的mac air上,用pip安装一些python库时,偶尔就会遇到一些报错,关于“unused-command-line-argument-hard-error-in-...
在我的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
推荐阅读
-
ORA-1693: max # extents 505 错误解决办法
-
mysql创建函数出现1418错误的解决办法_MySQL
-
OpenCV2.2+VC2005 error LNK2019错误解决办法
-
Oracle 11.2.0.3 RAC环境 ORA-29280 错误解决办法
-
iTunes连接失败显示未知错误0xE8000084的详细解决办法
-
解决SQL SERVER数据库备份时出现“操作系统错误5(拒绝访问)。BACKUP DATABASE 正在异常终止。”错误的解决办法
-
无法在发生错误时创建会话,请检查 PHP 或网站服务器日志,并正确配置 PHP 安装最快的解决办法
-
Ubuntu VPS中wordpress网站打开时提示”建立数据库连接错误”的解决办法
-
Python pip安装lxml出错的问题解决办法
-
Android Studio新建项目gradle编译错误:Conflict with dependency com.android.support:support-annotations解决办法