Press "Enter" to skip to content

安装pip, 解决ModuleNotFoundError: No module named ‘distutils.util’

在安装pip的时候出现这个问题,一般是因为python3-distutils包没有安装。只要安装好了就OK了。

sudo apt update
sudo apt-get install python3-distutils

然后再次更新pip

wget https://bootstrap.pypa.io/get-pip.py -O - | sudo python

就不会再出问题了。

Leave a Reply

Your email address will not be published. Required fields are marked *