我正在尝试遵循本教程: https ://github.com/Microsoft/CNTK/wiki/Hands-On-Labs-Image-Recognition 我现在正处于 Frank 所说的位置:“请执行以下两个 Python 脚本您还可以在工作目录中找到:
wget -rc http://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz
tar xvf www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz
python CifarConverter.py cifar-10-batches-py
我使用的是 Windows 10。我认为 wget 是 Linux 的“东西”。我已经从http://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz下载了文件 到 CifarConverter.py 脚本的路径,因为我无法从 cmd 或 cygwin 运行 wget。接下来我尝试运行 tar 命令,但出现错误“没有这样的文件或目录”我将命令更改为 tar xvf cifar-10-python.tar.gz 并从 Cygwin 执行它。(我刚刚重新安装了cygwin 2.6.0) 这会提取数据。
接下来我运行 python 命令:“python CifarConverter.py cifar-10-batches-py”(来自 cygwin)但我从第 48 行收到错误消息!我尝试将行更改为: print ("error") 但只在 import cPickle as cp ImportError: No module named 'cPickle' 中出现新错误
我该怎么做才能运行 python 脚本?