litstudy 包安装 Python

litstudy Package Installation Python

我正在尝试进行共引网络分析,并且必须在 Python 中安装名为“litstudy”的软件包,但我在 Jupyter 和 Python 3.10[=14 中安装它时遇到错误=]

Link 对于 litstudy 包 https://nlesc.github.io/litstudy/index.html

在 Python 3.10 中从命令提示符安装时出现错误

C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.32.31326\bin\HostX86\x64\cl.exe' failed with exit code 2 [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. error: legacy-install-failure

它安装在 Jupyter 中,但是当我导入包时出现错误

 import litstudy   
 Traceback (most recent call last):

 File "C:\Users\vibhu\AppData\Local\Programs\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\IPython\core\interactiveshell.py", line 3437, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)

File "<ipython-input-2-b5a65b8eaed7>", line 1, in <module>
import litstudy

File "C:\Users\vibhu\AppData\Local\Programs\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\litstudy\__init__.py", line 1, in <module>
from .sources import *  # noqa: F403,F401


  File "C:\Users\vibhu\AppData\Local\Programs\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\litstudy\sources\__init__.py", line 1, in <module>
from .scopus import search_scopus, refine_scopus, fetch_scopus

 File "C:\Users\vibhu\AppData\Local\Programs\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\litstudy\sources\scopus.py", line 236
if doi := id.doi:

如果有人能为我解决这个问题,我将非常感激我在这个问题上停留了将近一天,需要开始进行网络分析,或者如果您有任何其他类似的 Citation Networking 解决方案

TL;DR

  • litstudy 包的依赖项与 Python 3.10 不兼容,您必须降级到 3.9
  • 使用 conda 从 conda-forge 安装软件包,因此您不必编译它们。

说来话长

litstudy 包有大量依赖项,其中一些需要编译。您收到的错误消息表明其中一些编译失败。

当我 运行 pip install litstudy 重现您的问题时,wordcloudfa2 的依赖项在我的计算机上出现问题。

对于 wordcloud,存在一个 pre-compiled Conda 包,可从 conda-forge 获得。我推荐使用 conda(Anaconda3 或 Miniconda3,两者都可以)。

这适用于 wordcloud,正如它自己推荐的那样 readme:

conda install -c conda-forge wordcloud

对于 fa2,还有第二个问题:当我 运行 conda install -c conda-forge fa2 时,我收到了这条消息:

UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:

Specifications:

  - fa2 -> python[version='>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=3.9,<3.10.0a0']

Your python: python==3.10.4

基本上说 fa2 与 Python 3.10 不兼容(还)。因此,您必须降级到 Python 的 3.9.x 版本才能使用此软件包。

所以为了安装 litstudy 及其依赖项,我刚刚使用 conda 创建了一个 Python 3.9.12 环境,然后我就可以安装所有东西了。

cut-and-pastable 解决方案

在安装 Miniconda3 之后,将它们放在一起,这对我有用:

conda create -n py39 python==3.9.12
conda activate py39
conda install -c conda-forge fa2 wordcloud
pip install litstudy

在那种环境下,import litstudy 工作正常。