无法安装 scanpy

Unable to install scanpy with

您好,我在使用 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.

我认为您可能 运行 使用 python 2 安装,它自 2020 年初以来一直在贬值。您尝试过 运行 安装 python 3 使用 pip3 命令代替?

pip3 install scanpy

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