2

运行时kedro install出现以下错误:

Attempting uninstall: terminado
    Found existing installation: terminado 0.8.3
ERROR: Cannot uninstall 'terminado'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

此 github问题建议进行以下修复:

pip install terminado --user --ignore-installed

但它对我不起作用,因为我一直有同样的错误。

注意: 这个问题与类似,但差异很大,我认为值得单独提问。

4

2 回答 2

8

问题是kedro模板项目需要的版本见src/requiremetns.txt

在我的项目中它是terminado==0.9.1,因此以下解决了这个问题:

pip install terminado==0.9.1  --user --ignore-installed
于 2020-11-21T05:22:29.737 回答
0

对我来说,就是 requirements.txt 中的这一行;

...
jupyterlab>=1.0
....

删除了版本部分(">=1.0")并且它起作用了;

...
jupyterlab
....
于 2021-04-17T04:29:37.823 回答