用法示例显示未用逗号分隔的 python 函数的输入?

我正在尝试获取一些我在网上找到的代码,以使用 README.md 文件中给出的用法示例。这些工具的目的是从单独的事件中合成一个音频场景。我不知道如何运行给出的使用示例,它们是:


  * ./simscene.py -h

  Displays command line syntax and option descriptions.


  * ./simscene.py example/sound/ output/ 10 -e example/forest_events.xls -b example/forest_backgrounds.xls -N 10 -v

  Creates wavefiles and plots of 10 instances of scenes for which events are described in example/forest_events.xls and

  background sounds in example/forest_backgrounds.xls

我试过在终端上运行这些行(我使用的是 PyCharm),但错误是“simscene.py 未被识别为内部或外部命令、可运行程序或批处理文件”,即使我尝试运行“simscene” .py" 单独没有输入。


我已经能够通过导入功能 simscene 从另一个脚本运行它,但随后遇到错误。看起来文件 simscene.py 使用行argparse来提示用户,但我似乎无法激活这些提示以开始运行。


使用示例如何将指定的输入传递给函数,我如何才能运行使用示例?


整个项目的链接在这里: https://bitbucket.org/mlagrange/simscene/src/master/python/


慕桂英4014372
浏览 101回答 1
1回答

一只萌萌小番薯

它可能要求您使用 python 解释器运行该文件,即如果您在目录中,python simscene.py -h应该可以运行第一个示例。我假设他们没有包括这python部分,因为人们可能有不同的变体(python3,numba等)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python