我尝试了;你好";Transcrypt教程中的示例,但得到以下错误消息:
bash-4.3$ transcrypt hello
Transcrypt (TM) Python to JavaScript Small Sane Subset Transpiler Version 3.9.0
Copyright (C) Geatec Engineering. License: Apache 2.0
Saving target code in:
/home/User/hello/__target__/org.transcrypt.__runtime__.js
Saving minified target code in:
/home/User/hello/__target__/org.transcrypt.__runtime__.js
Error while compiling (offending file last):
File 'org.transcrypt.__runtime__', line 0, namely:
[Errno 2] No such file or directory: 'java': 'java'
Aborted
这个错误是由需要java的Google compilier迷你程序引起的吗?有没有办法在没有java的情况下运行Transcrypt?
我在谷歌上搜索了这个错误,发现了这个有希望的GitHub问题评论,上面写着
您现在可以在不进行缩小的情况下进行编译,因此可以使用
-n
开关在不使用Java的情况下编译。
所以,试试
transcrypt -n hello