我试图通过在freeCodeCamp上进行项目来获得repl.it上的证书。一切都很顺利直到这一切发生。我不知道会发生什么,我在谷歌上搜索,但我仍然不明白。我感谢你的帮助
Python 3.8.2 (default, Feb 26 2020, 02:56:10)
>
Repl.it: Updating package configuration
--> python3 -m poetry lock
[RuntimeError]
The Poetry configuration is invalid:
- 'description' is a required property
exit status 1
Repl.it: Package operation failed发布于 2020-08-21 19:20:21
Add description="" between [tool.poetry] and [tool.poetry.dependencies]
例子:
[tool]
[tool.poetry]
authors = ["Your Name <you@example.com>"]
description=""
name = "root"
version = "0.0.0"
[tool.poetry.dependencies]
pandas = "*"
python = "^3.7"
seaborn = "*"https://stackoverflow.com/questions/63230179
复制相似问题