如何使用Poetry安装Tweepy



当我尝试通过运行此命令poetry add tweepy进行安装时,它会返回以下错误:

(base) angellanaigaga@Angellas-MBP plugin-template % poetry add tweepy
Using version ^3.10.0 for tweepy
Updating dependencies
Resolving dependencies... (13.6s)
CalledProcessError
Command '['git', '--git-dir', '/var/folders/pt/17xvwz550hx9hkhw2wv0zpbr0000gn/T/pypoetry-git-wr1sgu4u/.git', '--work-tree', '/var/folders/pt/17xvwz550hx9hkhw2wv0zpbr0000gn/T/pypoetry-git-wr1sgu4u', 'checkout', 'demo']' returned non-zero exit status 1.
at ~/opt/anaconda3/lib/python3.8/site-packages/poetry/utils/_compat.py:217 in run
213│                 process.wait()
214│                 raise
215│             retcode = process.poll()
216│             if check and retcode:
→ 217│                 raise CalledProcessError(
218│                     retcode, process.args, output=stdout, stderr=stderr
219│                 )
220│         finally:
221│             # None because our context manager __exit__ does not use them.

我无法复制这个:

>poetry add tweepy
Using version ^3.10.0 for tweepy
Updating dependencies
Resolving dependencies...
Writing lock file
Package operations: 12 installs, 0 updates, 0 removals
• Installing oauthlib (3.1.1)
• Installing pysocks (1.7.1)
• Installing atomicwrites (1.4.0)
• Installing attrs (21.2.0)
• Installing more-itertools (8.8.0)
• Installing py (1.10.0)
• Installing colorama (0.4.4)
• Installing pluggy (0.13.1)
• Installing wcwidth (0.2.5)
• Installing requests-oauthlib (1.3.0)
• Installing pytest (5.4.3)
• Installing tweepy (3.10.0)

这似乎是您项目的其他依赖项之一的问题。

据我所知,它似乎正在尝试安装一个(可能没有名字?(git依赖项的demo分支,但该分支可能不存在。

如果没有看到你的pyproject.toml.,很难确定更多

最新更新