因此,我正在关注本教程:

https://www.playframework.com/documentation/2.3.x/Installing

一切似乎都已安装-即所有命令都有效,但是当我尝试调用时:

activator new my-first-app play-scala

我得到以下内容:
Fetching the latest list of templates...


Could not fetch the updated list of templates.  Using the local cache.
Check your proxy settings or increase the timeout.  For more details see:
http://typesafe.com/activator/docs

OK, application "another-app" is being created using the "play-scala" template.

akka.pattern.AskTimeoutException: Ask timed out on [Actor[akka://default/user/template-cache#1575831997]] after [10000 ms]
    at akka.pattern.PromiseActorRef$$anonfun$1.apply$mcV$sp(AskSupport.scala:333)
    at akka.actor.Scheduler$$anon$7.run(Scheduler.scala:117)
    at scala.concurrent.Future$InternalCallbackExecutor$.unbatchedExecute(Future.scala:599)
    at scala.concurrent.BatchingExecutor$class.execute(BatchingExecutor.scala:109)
    at scala.concurrent.Future$InternalCallbackExecutor$.execute(Future.scala:597)
    at akka.actor.LightArrayRevolverScheduler$TaskHolder.executeTask(Scheduler.scala:467)
    at akka.actor.LightArrayRevolverScheduler$$anon$8.executeBucket$1(Scheduler.scala:419)
    at akka.actor.LightArrayRevolverScheduler$$anon$8.nextTick(Scheduler.scala:423)
    at akka.actor.LightArrayRevolverScheduler$$anon$8.run(Scheduler.scala:375)
    at java.lang.Thread.run(Thread.java:744)

没有任何反应。

我只是将其安装在同一网络下的房屋中的PC上,所以我认为连接不是问题。我也不使用代理。

有任何想法吗?我一直在努力使它工作超过一天。

顺便说一下,我在OSX优胜美地。

最佳答案

有时我也会超时,尤其是在大学里使用一些草率的WLAN时。
激活器有两种类型,通常是轻型激活器和脱机版本。第二,所有存储库都存在,因此激活器不需要从Internet收集任何信息。

当您转到https://www.playframework.com/download ...时,查找脱机发行版(大约400MB)并像普通激活器一样安装它。
如果这解决了您的问题,则激活器尝试从存储库中获取内容时出了点问题(您说可以运行该项目,但会导致服务器超时)。

[编辑]:您还可以将超时设置为30秒,看看是否有帮助

activator -Dactivator.timeout=30s new "project name"

09-16 05:05