【Windows版本】RandLA-Net网络代码论文复现过程出现的问题学习记录

1、关于不能pip install  sklearn 失败的问题

【Windows版本】RandLA-Net网络代码论文复现过程出现的问题学习记录_第1张图片

开始按照教程和csdn 里面的各种教程和解决方案安装此模块,全都失败了,要不全部标红,

【Windows版本】RandLA-Net网络代码论文复现过程出现的问题学习记录_第2张图片

要不就是这样

 【Windows版本】RandLA-Net网络代码论文复现过程出现的问题学习记录_第3张图片

 没有标红,实际上也没有安装进去。使用语句:conda list,可以发现scikit-learn并未出现在列表。后面是因为我的梯子会员过期了,才突然使用下面的安装语句,成功装入该模块。

 解决方案:pip install -U scikit-learn

参考网址运行python提示no module named sklearn_大数据孔的博客-CSDN博客

注意:不要使用外网(梯子)

【Windows版本】RandLA-Net网络代码论文复现过程出现的问题学习记录_第4张图片

此外值得注意的是,在安装该模块之前需要安装scipy 、matplotlib、numpy

python安装sklearn模块_Ixiaohuihuihui的博客-CSDN博客_sklearn安装

2、将Linux版本的help_tool改为无错误的Windows版本【Windows版本】RandLA-Net网络代码论文复现过程出现的问题学习记录_第5张图片

 解决方案:将from open3d import linux as open3d改为from open3d import ml as open3d

开始以为是open3d版本的问题,后来发现并不是。安装Windows版本的open3d与Linux版本的存在区别,因此需要修改为上述语句。

你可能感兴趣的:(sklearn,python,人工智能)