【错误记录】Python 安装依赖库报错 ( ERROR: Could not find a version that satisfies the requirement elftools )
生活随笔
收集整理的這篇文章主要介紹了
【错误记录】Python 安装依赖库报错 ( ERROR: Could not find a version that satisfies the requirement elftools )
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文章目錄
- 一、報錯信息
- 二、解決方案
一、報錯信息
報錯信息 :
ERROR: Could not find a version that satisfies the requirement elftools (from versions: none) DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality. ERROR: Could not find a version that satisfies the requirement elftools (from versions: none) ERROR: No matching distribution found for elftools二、解決方案
遇到 ERROR: Could not find a version that satisfies the requirement xxx 問題 , 先排除是否是網絡問題 , 先搭梯子試試是否能安裝成功 ;
在代碼中 , 使用了如下代碼 :
from elftools.elf.elffile import ELFFileelftools.elf.elffile 需要導入依賴庫 ;
默認提示 " Install package elftools " , 安裝的是 elftools 庫 ;
點擊 " More Actions … " , 查看是否有其它選項 , 這里還可以安裝 pyelftools 庫 ;
pyelftools 庫安裝成功 ;
總結
以上是生活随笔為你收集整理的【错误记录】Python 安装依赖库报错 ( ERROR: Could not find a version that satisfies the requirement elftools )的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Android 逆向】ELF 文件格式
- 下一篇: 【错误记录】PyCharm 中从 Git