龙芯loongarch64安装numpy报错“No module named ‘numpy.core._multiarray_umath‘”

前言

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

龙芯loongarch64安装numpy报错“No module named ‘numpy.core._multiarray_umath‘”_第1张图片

问题复现

配置pip源

vim /etc/pip.conf

复制下面的内容并保存

[global]
timeout = 60
index-url = https://pypi.loongnix.cn/loongson/pypi
extra-index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host =
    pypi.loongnix.cn

执行下载命令

pip3 install numpy

龙芯loongarch64安装numpy报错“No module named ‘numpy.core._multiarray_umath‘”_第2张图片

再执行import numpy就会报上面的错误。

解决办法

通过pip3安装命令后面接-i 

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