如何在 mac 终端中运行此脚本?

我试图在终端中运行以下脚本:


python write_tfrecords

--dataset_dir /Users/shwaitkumar/Desktop/NLP/Text Detection/Synthetic Train Set - Detection & Recognition

--save_dir /Users/shwaitkumar/Desktop/NLP/Text Detection/untitled folder

但我无法运行它。如果我一个接一个地运行它,它会在第 1 行给出错误,即未定义路径,如果我尝试将其全部粘贴并运行,我会得到另一个错误,bash : -- command not found。我如何在终端中运行这个脚本?我什至创建了一个 conda 环境来运行它,但仍然是同样的错误。


holdtom
浏览 60回答 1
1回答

潇湘沐

您的执行方式似乎存在三个问题:write_tfrecords 应该是“write_tfrecords.py”三行应合并为一行Arg 值(文件夹名称)中有空格,它们应该用引号引起来。python write_tfrecords.py --dataset_dir "/Users/shwaitkumar/Desktop/NLP/Text Detection/Synthetic Train Set - Detection & Recognition" --save_dir "/Users/shwaitkumar/Desktop/NLP/Text Detection/untitled 文件夹"
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python