安装和使用Emscripten

时间:2016-07-06 14:51:21

标签: java ubuntu path installation emscripten

我通过以下步骤安装了Emscripten:

1.) Download the emsdk-portable version for Linux/MacOSX
http://kripken.github.io/emscripten-site/docs/getting_started/downloads.html#sdk-downloads
2.)
Run
$ ./emsdk update
$ ./emsdk install latest
$ ./emsdk activate latest
$ source emsdk_env.sh (To update your environment variables)

我相信一切都安装正确,但是我无法在emsdk文件夹之外的任何地方运行emscripten。

我需要能够在我的:Documents / project3 / dataviz / graphiti文件夹中运行em ++。

此外,当我在我的emsdk文件夹中运行 em ++ -v 时,我收到以下消息:我无法解决:

Java does not seem to exist, requierd for closure compiler,
which is optional (define JAVA in /home/bryce/.emscripten if you want it) 

我试图在文件夹中定义java路径,但我不确定它应该如何显示。

非常感谢任何解决这两个问题的帮助。

1 个答案:

答案 0 :(得分:2)

第一个问题听起来PATH未正确设置。运行echo $PATH后键入source emdsk_env.sh,并检查是否已添加emscripten安装的路径。

请注意,您必须为您正在使用的每个终端会话导出PATH(可能需要将source <path to emsdk dir>/emsdk_env.sh放入.bashrc文件中,以便完成此操作自动地)。

此链接可以帮助解决第二个问题吗?

https://kripken.github.io/emscripten-site/docs/building_from_source/verify_emscripten_environment.html#installing-missing-components