Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmp/pip-build-C31tjn/python-igraph/setup.py", line 465 raise RuntimeError(f"Failed to clean {folder} with git") ^ SyntaxError: invalid syntax ---------------------------------------- Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-C31tjn/python-igraph/
时间: 2023-06-14 15:07:01 浏览: 182
Python使用googletrans报错的解决方法
这个错误通常是由于 `python-igraph` 库的安装问题引起的。建议您尝试以下两种方法中的一种:
1. 如果您使用的是 Python3,请尝试使用以下命令安装 `python-igraph` 库:
```
pip3 install python-igraph
```
2. 如果您使用的是 Python2,请尝试使用以下命令安装 `python-igraph` 库:
```
pip2 install python-igraph
```
如果以上方法不起作用,您可以尝试更新您的 pip 版本并重新安装 `python-igraph` 库:
```
pip install --upgrade pip
pip install python-igraph
```
如果您仍然遇到问题,请提供更多错误信息,以便我更好地帮助您解决问题。
阅读全文