mytool.py
我有一个 SCons工具,当我将__init__.py
.site_scons/site_tools/mytool
现在我想将其更改为通过其他地方的绝对路径进行引用。
所以我通过以下方式调用它:
mytoolpath = '/tools/mytool'
env = Environment(tools=['mytool'], toolpath=mytoolpath)
它除了EnvironmentError: No tool named 'mytool': not a Zip file:
mytool.py
位于/tools/mytool
所以我真的不明白问题出在哪里。有人可以阐明一下。