龙芯loongarch64安装statsmodels

前言

        在之前编译安装Python3.8的文章中说明了,龙芯仓库的很多包都有问题,安装之后很多无法使用,比如安装statsmodels后,就会出现“No module named 'numpy.core._multiarray_umath'”

龙芯loongarch64安装statsmodels_第1张图片

解决办法

通过龙芯源安装固定版本的依赖包

pip3 install statsmodels==0.13.2 -i https://pypi.loongnix.cn/loongson/pypi

安装完成后,需要重新安装numpy,否则调用的时候还是会报“No module named 'numpy.core._multiarray_umath”的错误。

pip3 install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple

完毕!!!

你可能感兴趣的:(龙芯loongarch64,statsmodels)