2

嗨,我无法使用 pip 安装 scanpy 库。这是我运行的命令

pip install scanpy

在安装过程中,它报告以下错误消息:

Collecting scanpy
  Downloading https://files.pythonhosted.org/packages/78/cf/b2cc01e9c33613d738c1cdeb5af7d250cf965bda187aa258e45ed25a6a15/scanpy-1.3.1.tar.gz (216kB)
     |████████████████████████████████| 225kB 786kB/s 
    ERROR: Command errored out with exit status 1:
     command: /home/john/Desktop/env2/bin/python2 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-vIOr01/scanpy/setup.py'"'"'; __file__='"'"'/tmp/pip-install-vIOr01/scanpy/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-install-vIOr01/scanpy/pip-egg-info
         cwd: /tmp/pip-install-vIOr01/scanpy/
    Complete output (5 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-install-vIOr01/scanpy/setup.py", line 2, in <module>
        from pathlib import Path
    ImportError: No module named pathlib
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
4

2 回答 2

4

我认为您可能已经使用自 2020 年初开始贬值的 python 2 运行安装。您是否尝试过使用pip3命令运行 python 3 的安装?

pip3 install scanpy
于 2020-01-28T01:26:02.003 回答
1

尝试使用 再次运行该命令pip3。如果这不起作用,那么您需要确保已安装 Python 3 并使用相应版本的 Pip。如果您遇到困难,这个出色的答案详细说明了如何进行升级。

于 2020-01-28T01:32:33.483 回答