简体   繁体   English

ModuleNotFoundError:没有名为“setuptools._distutils”的模块

[英]ModuleNotFoundError: No module named 'setuptools._distutils'

I am getting the exception when I am installing the below package in python.当我在 python 中安装以下 package 时出现异常。

pip install django_microsoft_auth

Exception例外

ModuleNotFoundError: No module named 'setuptools._distutils'

What is the problem here?这里有什么问题?

I have resolved it with the below option.我已经使用以下选项解决了它。

Linux Linux

export SETUPTOOLS_USE_DISTUTILS=stdlib

Windows Windows

set SETUPTOOLS_USE_DISTUTILS=stdlib

After that, I have executed the pip install command.之后,我执行了 pip 安装命令。

pip install django_microsoft_auth

This is the bug in setuptools.这是 setuptools 中的错误。 See ModuleNotFoundError: No module named 'setuptools._distutils' #2353 .请参阅ModuleNotFoundError:没有名为“setuptools._distutils”的模块#2353

sudo apt-get install -y python3-distutils

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 AttributeError: 模块 'setuptools._distutils' 没有属性 'version' - AttributeError: module 'setuptools._distutils' has no attribute 'version' Windows:ModuleNotFoundError:没有名为“ distutils”的模块 - Windows: ModuleNotFoundError: No module named 'distutils' ModuleNotFoundError:没有名为“distutils.core”的模块 - ModuleNotFoundError: No module named 'distutils.core' ModuleNotFoundError:没有名为“_distutils_hack”的模块 - ModuleNotFoundError: No module named '_distutils_hack' pip安装错误:ModuleNotFoundError没有名为“ setuptools”的模块 - pip install error: ModuleNotFoundError No module named 'setuptools' ModuleNotFoundError:没有名为“setuptools.command.build”的模块 - ModuleNotFoundError: No module named 'setuptools.command.build' 带有 pip -e 的 Conda 环境:ModuleNotFoundError:没有名为“setuptools”的模块 - Conda environment with pip -e : ModuleNotFoundError: No module named 'setuptools' 导入错误:没有名为 distutils 的模块 - ImportError: No module named distutils 来自 numpy.distutils.core 将扩展导入为 Ext ModuleNotFoundError:没有名为“numpy”的模块 - from numpy.distutils.core import Extension as Ext ModuleNotFoundError: No module named 'numpy' 没有名为 setuptools 的模块 - No module named setuptools
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM