|
|
我运行一个python程序出现一个错误
- Traceback (most recent call last):
- File "addShell.py", line 2, in
- import random, optparse, pefile, capstone, binascii, struct, os
- ImportError: No module named pefile
复制代码
得知可能需要安装下列模块才行。
random, optparse, pefile, capstone, binascii, struct, os
特地在python官方网站发现有些模块并没有
https://docs.python.org/3/py-modindex.html
比如pefile模块。
我已?成功安装了capstone 模块通过命令
python -m pip install capstone
其它的模块都出现了这种错误
- Could not find a version that satisfies the requirement os (from versions: )
- No matching distribution found for os
复制代码
完整输出
解决我就给100个金币。 |
|