解决Python报错AttributeError: module ‘scipy.sparse‘ has no attribute ‘coo_array‘

在构建网络后计算PageRank时报错:

AttributeError: module 'scipy.sparse' has no attribute 'coo_array'

根据经验,一个很玄学的方法是调整pkg的版本。
在网上再找到了合理的解释:

coo_array appears only in scipy version 1.8.0

于是先pip uninstall scipy,然后

pip install scipy ==1.8.0

使用anaconda安装包的时候有时会报错ValueError: check_hostname requires server_hostname
可以关闭科学上网工具,重新安装。

完成上述步骤后重新运行PageRank算法,问题解决。

你可能感兴趣的:(Python学习,python,scipy)