我完全不熟悉Python并且没有使用这种语言编写脚本。但我需要帮助以下行(我知道该行是在解释器中运行脚本)。我需要运行这个程序,我可以对.gwc文件进行反编译。我现在不想学习Python,我只想在Pycharm中运行这个程序。
以下是该行:
$ python gwcd.py [OPTIONS] <gwc file>
选项包括:
-h, --help show this help message and exit
--output OUTPUT Output directory where gwcd will store extracted data
--lua Extract compiled lua file
--completion Show the completion code
--media Extract media files
--verbose, -v Show all data related to the cartridge
--all Do everything
该问题也适用于我,必须存储gwc文件。
提前致谢!
P.S。:项目的Github链接是:https://github.com/driquet/gwcd.git
答案 0 :(得分:1)
大概是你在PyCharm下运行它,这意味着你做了一个运行配置,然后你点击绿色的“运行”按钮。
如果是,请编辑“运行配置”并将参数添加到“脚本参数”字段中。如果您希望gwc文件是相对的,而不是提供完整路径,则可能(或可能不)需要设置“工作目录”字段。