ERROR: Could not find a version that satisfies the requirement exceptions (from versions: none)
ERROR: No matching distribution found for exceptions
这个问题怎么解决?
python调试三板斧 https://ask.csdn.net/questions/7908322/54130133
这个错误通常表示Python环境中缺少所需模块或包。"exceptions" 是一个非标准模块,因此可能并不存在于你的环境中。
可以尝试终端使用 pip 安装该模块:
pip install exceptions