我有新鲜的ubuntu15.04,我通过这指南安装了sbt
echo "deb http://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
sudo apt-get update
sudo apt-get install sbt然后我在终端上运行命令
sbt输出,表示sbt正在尝试安装(许多成功消息),毕竟有一些错误消息,如
:: USE VERBOSE OR DEBUG MESSAGE LEVEL FOR MORE DETAILS
unresolved dependency: org.json4s#json4s-core_2.10;3.2.10: not found
unresolved dependency: org.spire-math#jawn-parser_2.10;0.6.0: not found
unresolved dependency: org.spire-math#json4s-support_2.10;0.6.0: not found
download failed: org.scalamacros#quasiquotes_2.10;2.0.1!quasiquotes_2.10.jar
Error during sbt execution: Error retrieving required libraries
(see /home/dima/.sbt/boot/update.log for complete log)
Error: Could not retrieve sbt 0.13.8这里是来自/home/dima/..sbt/boot/update.log的完整日志。
请帮帮忙,我该怎么做才能解决这个问题?
谢谢
发布于 2015-05-12 22:14:14
日志中有一些类似的错误:
SERVER ERROR: Connection timed out url=https://repo1.maven.org/maven2/org/scalamacros/quasiquotes_2.10/2.0.1/quasiquotes_2.10-2.0.1.pom.sha1这表明存在一个(也许)暂时的网络问题。如果您尝试使用get或curl的URL,您会看到类似的错误吗?
https://stackoverflow.com/questions/30040395
复制相似问题