pip install setuptools “setuptools”是一个处理Python软件包的工具包,它依赖于 distutils。安装 setuptools可以间接解决没有“distutils”的问题 惜秦皇汉武,略输文采;唐宗宋祖,稍逊风骚。 一代天骄,成吉思汗,只识弯弓射大雕。 俱往矣,数风流人物,还看今朝...
结论 ModuleNotFoundError: No module named 'distutils.util'通常表明Python解释器无法找到distutils.util模块。由于distutils是Python的标准库,这个问题可能是由于Python安装不完整或损坏引起的。按照上述步骤操作后,大多数问题应该能够得到解决。如果问题仍然存在,请考虑寻求更专业的帮助。
就是缺少 windows 这个库。 解决方法: 我们只需要安装 pyHook 和 pyUserInput 这两个库就好了。
ModuleNotFoundError: No module named ‘dateutil‘ python 程序报错:Traceback (most recent call last): File "common_auto_fetch_sensor.py", line 13, in <module> from dateutil.relativedelta import relativedeltaModuleNotFoundError: No module named 'dateutil'然后执行pip install也报错:$ pip install ...
一、distutils 简介 distutils 是标准库中负责建立 Python 第三方库的安装器,使用它能够进行 Python 模块的安装和发布。distutils 对于简单的分发很有用,但功能缺少。大部分Python用户会使用更先进的setuptools模块 二、setuptools 简介 setuptools 是 distutils 增强版,不包括在标准库中。其扩展了很多功能,能够帮助开发者...
ModuleNotFoundError:Nomodulenamed'distutils' 这是由于只有当python的版本介于3.4-3.11版本间时,python才提供了distutils模块,这间接的说明了,我们当前正在安装模块依赖的python版本为3.4-3.11,所以解决该问题的的根本的方法是将当前python的版本切换至3.4-3.11版本间(而不是在其它的版本下安装所谓的distutils模块),以mac...
ModuleNotFoundError: No module named 'distutils.util' 执行下列命令安装: apt install python3-distutils 有了计划记得推动,不要原地踏步。
您现在需要为这个精确的 python 解释器安装 distutils。所以这里这个例子的 解决方案 是:sudo apt install python3.7-distutils # sudo apt install python3-distutils # would just update default python intrpreter 请记住,只是从任何命令行运行 python 可能是另一个版本的 python 然后你在你的项目中运行!
Expected behaviour distutils is deprecated and should not be used in the module. Actual behaviour Installing latest version of opencv_python runs into an exception because of the distutils reference. Call Stack ERROR: Exception: Tracebac...
ModuleNotFoundError: No module named 'distutils.util' 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 解决方案: 在终端输入以下命令即可 sudo apt-get install python3-pip 1.