From matplotl1b.path 1mport failed to import ImportError:numpy.core.multiarray

问题:From matplotl1b.path 1mport

failed to import

ImportError:numpy.core.multiarray

安装labelme的时候说numpy与环境不兼容,调不了labelme

解决1:安装虚拟环境

(这里安装labelmede 虚拟环境)

python 复制代码
#查看python版本
python -V
#创建虚拟环境
conda create labelme --name=labelme python=3.9.7
#查询conda里面创建了哪些虚拟环境
conda env list
#进入环境
activate labelme
#安装labelme
conda install labelme
#激活环境
activate labelme

解决2:降版本

python 复制代码
pip install numpy==1.26.4
相关推荐
疯狂成瘾者2 天前
np.ndarray 是 NumPy 库中的核心数据结构
数据结构·numpy
晚上睡不着!2 天前
Java程序命令行调用Python矩阵算法
java·开发语言·python·numpy
DongHappyyy5 天前
gpt优化事件处理速度
python·gpt·numpy
xiaobai12 37 天前
numpy的repeat和pytorch的repeat区别
人工智能·pytorch·numpy
新手小袁_J7 天前
Python的列表基础知识点(超详细流程)
开发语言·python·numpy·pip·基础知识·基础知识点
白雪公主的后妈8 天前
数据的存储和处理——创建数组
开发语言·python·学习·numpy
书剑风雪10 天前
Chapter 03 复合数据类型-1
windows·python·conda·numpy·pandas·pip·dash
冰蓝蓝11 天前
np.triu:NumPy中提取上三角矩阵的利器
线性代数·矩阵·numpy
KevinRay_11 天前
Numpy指南:解锁Python多维数组与矩阵运算(下)
python·矩阵·numpy·排序·文件读写