0

我用 git clone https://github.com/django-oscar/django-oscar,然后我用

pipenv install

我得到了

AttributeError: module 'os' has no attribute 'uname' this error as well as this 
pipenv.patched.notpip._internal.exceptions.InstallationError:
Command errored out with exit status 1:
python setup.py egg_info Check the logs for full command output.

我正在使用 Windows 10。

4

1 回答 1

0

我想这与 docker 没有太大关系,但更多的是与主机操作系统(在本例中为 win 10)。

这个问题描述得更详细,但归结为 uname 在 Windows 上不可用。由于 docker 容器使用运行它们的主机操作系统中的内核,因此在您的情况下,这将出错。

如果您在 python Idle 环境下在 Windows 10 中运行这些命令,则会出现相同的错误。

于 2020-07-23T06:38:48.693 回答