笔记.教程.分享.存档.杂谈.关于.

数据下载wget出现unsupported scheme(win10系统)

1.问题
wget 访问https 出现unsupported scheme 问题

# Download dataset for point cloud classification
DATA_DIR = os.path.join(BASE_DIR, 'data')
if not os.path.exists(DATA_DIR):
    os.mkdir(DATA_DIR)
if not os.path.exists(os.path.join(DATA_DIR, 'modelnet40_ply_hdf5_2048')):
    www = 'https://shapenet.cs.stanford.edu/media/modelnet40_ply_hdf5_2048.zip'
    zipfile = os.path.basename(www)
    os.system('wget --no-check-certificate %s ; unzip %s' % (www, zipfile))
    os.system('mv %s %s' % (zipfile[:-4], DATA_DIR))
    os.system('rm %s' % (zipfile))

若–no-check-certificate仍不能解决问题,见第2点

2.解决方案

(1)下载链接:https://eternallybored.org/misc/wget/

d0864014721d4868af335fd1a122d877.png
(2)利用下载的wget.exe文件覆盖C:\System32\wget.exe(原因:版本问题)

参考链接:
https://blog.51cto.com/bluethink/1126206
https://www.cnblogs.com/hzdx/p/6432161.html
https://jingyan.baidu.com/article/6b1823098e049aba58e15921.html


最后更新于 2024 年 05 月 07 日.

Never too old to learn. 回到顶部