how to install python distutils

前端 未结 11 1248
情深已故
情深已故 2021-01-30 02:42

I just got some space on a VPS server(running on ubuntu 8.04), and I\'m trying to install django on it. The server has python 2.5 installed, but I guess its non standard install

11条回答
  •  一生所求
    2021-01-30 03:20

    The module not found likely means the packages aren't installed.

    Debian has decided that distutils is not a core python package, so it is not included in the last versions of debian and debian-based OSes. You should be able to do

    sudo apt-get install python3-distutils
    sudo apt-get install python3-apt
    

提交回复
热议问题