command 'gcc' failed with exit status 1錯誤問題的解決辦法
在寫Python程式碼的時候,需要用到psutil模組,需要安裝。在安裝psutil模組的時候出現的問題,重新安裝了gcc等各種我能想到的,不過還是不行。網上說是其實安裝一個對應的devel環境就可以了。 舉個例子,這是我安裝報錯的資訊:
#include "Python.h"
^
compilation terminated.
error: command 'gcc' failed with exit status 1
其實只要看include缺什麼就行了,我缺的時Python.h,所以就安裝以下python的devel環境就好
yum install python-devel
其他同類問題同理,對應下載相應的devel環境。
【問題總結】
按照以往經驗,覺得應該是缺少了gcc模組, 所以操作 [ yum install -y gcc ]
安裝完成後,再繼續安裝psutil還是報同樣的錯,發現報錯不是 not found gcc,
可能是某個功能模組缺失 發現需要安裝多一些依賴的包: [ yum install -y libffi-devel python-devel openssl-devel ]
最小化安裝linux系統之後,最好把開發包和一些常用的軟體都裝齊,避免後續問題的出現。
相關文章
- Command /Applications/Xcode.app/Contents/Developer/usr/bin/copypng failed with exit code 1錯誤解決辦法...APPXCodeDeveloperAI
- gitlab-runner之build failed with exit status 1問題分析GitlabUIAI
- 解決Xcode報錯:Command /usr/bin/codesign failed with exit code 1XCodeAI
- QT錯誤之——collect2:ld returned 1 exit statusQT
- RuntimeError: cuDNN error: CUDNN_STATUS_EXECUTION_FAILED解決辦法ErrorDNNAI
- 簡易的解決方式linker command failed with exit code 1 (use -v to see invocation)AI
- 如何修復 Ubuntu 上“…script returned error exit status 1”的錯誤UbuntuError
- [nodemon] Internal watch failed: watch ENOSPC錯誤解決辦法AI
- Xcode執行範例程式遇到的問題Command /bin/sh failed with exit code 1XCodeAI
- iOS報錯:linker command failed with exit code 1 (use -v to see invocation)iOSAI
- mysql 匯入問題:Unknown command '\'' 解決辦法MySql
- dns錯誤怎麼辦 dns錯誤的解決辦法DNS
- ios clang: error: linker command failed with exit code 1 (use -v to see invocation)解決方法iOSErrorAI
- Cargo invocation has failed: Error: exit code: 101.解決辦法CargoAIError
- 錯誤 330 (net::ERR_CONTENT_DECODING_FAILED):未知錯誤解決辦法AI
- SAP錯誤提示解決辦法
- iOS開發除錯之報錯:Command /usr/bin/codesign failed with exit code 1iOS除錯AI
- 新增第三方類庫造成的linker command failed with exit code 1 (use -v to see invocation)的錯誤除錯AI除錯
- scp出現錯誤的解決辦法
- samba一個錯誤的解決辦法!Samba
- 連線oracle錯誤解決辦法Oracle
- nginxFastCGI錯誤Primaryscriptunknown解決辦法NginxAST
- Unable to locate package錯誤解決辦法Package
- oracle 1455 錯誤解決辦法Oracle
- 畢設之錯誤解決辦法
- iOS linker command failed with exit code 1 (use v to see invocation)iOSAI
- VMware 啟動報錯 "Failed to lock the file"解決辦法AI
- PHP報錯getimagesize(): SSL operation failed with code 1問題解決方案PHPAI
- iOS路上遇到的錯誤及解決辦法iOS
- ORA-12705,錯誤的解決辦法
- SPFILE引數修改錯誤的解決辦法
- ORA-12170錯誤的解決辦法
- Permission denied Command PhaseScriptExecution failed with a nonzero exit codeAI
- 執行 valet 提示 sudo 問題和 undefined function Valet\collect () 錯誤的解決辦法UndefinedFunction
- vscode“檢測到 #include 錯誤,請更新 includepath。”的問題解決辦法VSCode
- git push程式碼時的‘git did not exit cleanly (exit code 1)‘問題解決Git
- Idea編譯錯誤解決辦法Idea編譯
- PHP編譯錯誤及解決辦法PHP編譯