%pip3 install --index-url=https://pypi.spotify.net/spotify/production confidence
导致此错误:
UsageError: Line magic function `%pip3` not found.
如何在Google colab上使用pip3安装软件包?
答案 0 :(得分:2)
您必须使用!
代替%
才能运行bash命令
!pip3 install --index-url=https://pypi.spotify.net/spotify/production confidence
但是,您可以简单地使用pip
而不是pip3
编辑:如您所见,该URL返回一个ConnectTimeoutError,因为它显然已损坏。也许您只想运行
!pip install spotify confidence
吗?