1

我正在使用 google colab 进行 python 编程。但是,没有安装包 UpSetPlot。我尝试使用以下命令:

!pip install UpSetPlot

但出现以下错误:

Collecting UpSetPlot
  Using cached https://files.pythonhosted.org/packages/a7/11/5cc8a0ebaf4f3a9a8e02cd3a9a13806eaebfc1d2ffb4a40031bdc83ad1be/UpSetPlot-0.5.0.tar.gz
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
4

1 回答 1

1

0.4.1之后的版本似乎存在问题upsetplot,可能与 Colab 中使用的 Python 版本有关。

在 Colab 单元中尝试此操作。

!pip install upsetplot==0.4.1
于 2021-07-18T12:43:02.977 回答