游戏框架安装(play framework installation)

2019-07-29 09:22发布

我试图在Ubuntu 11.安装播放框架2.0.1我已经加在Ubuntu玩的路径,我有SUN JRE 1.6配置(Java / javac的),我已经给读/写/执行权限到播放脚本。 不过,我仍然得到下面的错误复制,当我运行“玩帮助” - 是应该只包含“文件”,“仓库”,“框架”和“样本”子目录,还是应包含其他子目录,以及播放目录。 任何有帮助的建议,将受到欢迎。

java.io.IOException: No such file or directory
at java.io.UnixFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:900)
at xsbt.boot.Locks$.apply0(Locks.scala:34)
at xsbt.boot.Locks$.apply(Locks.scala:27)
at scala.collection.mutable.FlatHashTable$class.$init$(Proxy.scala:32)
at xsbt.boot.Launch$ScalaProvider.<init>(Launch.scala:110)
at xsbt.boot.Launch$$anonfun$1.apply(Launch.scala:84)
at org.apache.ivy.plugins.namespace.NamespaceRule.newEntry(Cache.scala:17)
at org.apache.ivy.plugins.namespace.NamespaceRule.apply(Cache.scala:12)
at xsbt.boot.Launch.getScala(Launch.scala:86) 
at xsbt.boot.Launch$.run(Launch.scala:49)
at xsbt.boot.Launch$$anonfun$explicit$1.apply(Launch.scala:43)
at xsbt.boot.Launch$.launch(Launch.scala:68)
at xsbt.boot.Launch$.apply(Launch.scala:14)
at xsbt.boot.Boot$.runImpl(Boot.scala:25)
at xsbt.boot.Boot$.main(Boot.scala:15)
at xsbt.boot.Boot.main(Boot.scala)
Error during sbt execution: java.io.IOException: No such file or directory

Answer 1:

如果选中的文件 ,你会看到这样的警告:

解压压缩文件到您拥有读写访问的位置(...)运行游戏存档内的一些文件写入到目录,所以不要安装到/ opt,在/ usr /本地或其他地方你需要特殊的写权限



Answer 2:

如果你真的想你的dev的机器上运行在选择进场时,你可能会想CHOWN /选择给自己。

sudo chown yourself:yourself /opt

我不相信这是有道理的,并且具有在/ opt和/ opt目录的通常目的,其他的事情影响。 不同于典型的web服务器环境中,发挥了嵌入式服务器(如的NodeJS)。 此外,如前所述,有很多文件生成的,当你准备一个项目运行的挫折感。 对于发展,我认为它始终是最好的你自己在默认情况下喜欢你的home目录的目录中安装的发挥。 在生产中,您将安装并启动一切,根决策/选择一个可行的选择。 此外,在Windows中使用,需要管理权限目录,就需要为多,如果不是更多的,不明智的变化。 玩不正式支持在生产模式窗口。



文章来源: play framework installation