pycharm中新建项目出现ModuleNotFoundError: No module named 'distutils'
时间: 2023-11-15 14:56:07 浏览: 268
pycharm运行出现ImportError:No module named的解决方法
5星 · 资源好评率100%
这个问题通常是由于缺少Python开发环境导致的。你可以尝试以下解决方法:
1. 安装Python开发环境
在Linux系统中,你可以使用以下命令安装Python开发环境:
```
sudo apt-get install python3-dev
```
在Windows系统中,你可以从Python官网下载并安装Python开发环境。
2. 安装distutils模块
在Linux系统中,你可以使用以下命令安装distutils模块:
```
sudo apt-get install python3-distutils
```
在Windows系统中,你可以从Python官网下载并安装Python。
如果以上方法都不能解决问题,你可以尝试重新安装Python。
阅读全文