Django, python3, on install I get: “Parent module 'setuptools' not loaded”

前端 未结 5 1096
花落未央
花落未央 2021-01-07 20:49

I see lots of errors and suggestions about Parent module \'\' not loaded, ...

I don\'t see any about specifically "out of the box" django 3.5.<

5条回答
  •  庸人自扰
    2021-01-07 21:27

    Something happened in version 50 of setuptools.

    We could "solve" this problem by downgrading setuptools to 49.3.0 (and maybe pip to 20.2.1)

    pip install setuptools==49.3.0 and pip install pip==20.2.1

    Be aware though that this should only be a temporary solution!

提交回复
热议问题