2016-11-03 4 views
1
내가이 다음 SBT 를 설치

실패 :FIRRTL 저장소 다운로드

 :::::::::::::::::::::::::::::::::::::::::::::: 
    ::    FAILED DOWNLOADS   :: 
    ::^see resolution messages for details^:: 
    :::::::::::::::::::::::::::::::::::::::::::::: 
    :: org.scala-sbt#main;0.13.11!main.jar 
    :: org.scala-sbt#actions;0.13.11!actions.jar 
    :: org.scala-sbt#io;0.13.11!io.jar 
    :: org.scala-sbt#completion;0.13.11!completion.jar 
    :: org.scala-sbt#collections;0.13.11!collections.jar 
    :: org.scala-sbt#api;0.13.11!api.jar 
    :: org.scala-sbt#incremental-compiler;0.13.11!incremental-compiler.jar 
    :: org.scala-sbt#compile;0.13.11!compile.jar 
    :: org.scala-sbt#ivy;0.13.11!ivy.jar 
    :: org.scala-sbt#main-settings;0.13.11!main-settings.jar 
    :: org.scala-sbt#command;0.13.11!command.jar 
    :: org.scala-sbt#compiler-interface;0.13.11!compiler-interface.jar 
    :::::::::::::::::::::::::::::::::::::::::::::: 

:: USE VERBOSE OR DEBUG MESSAGE LEVEL FOR MORE DETAILS 
download failed: org.scala-sbt#main;0.13.11!main.jar 
download failed: org.scala-sbt#actions;0.13.11!actions.jar 
download failed: org.scala-sbt#io;0.13.11!io.jar 
download failed: org.scala-sbt#completion;0.13.11!completion.jar 
download failed: org.scala-sbt#collections;0.13.11!collections.jar 
download failed: org.scala-sbt#api;0.13.11!api.jar 
download failed: org.scala-sbt#incremental-compiler;0.13.11!incremental-compiler.jar 
download failed: org.scala-sbt#compile;0.13.11!compile.jar 
download failed: org.scala-sbt#ivy;0.13.11!ivy.jar 
download failed: org.scala-sbt#main-settings;0.13.11!main-settings.jar 
download failed: org.scala-sbt#command;0.13.11!command.jar 
download failed: org.scala-sbt#compiler-interface;0.13.11!compiler-interface.jar 
Error during sbt execution: Error retrieving required libraries 
    (see /home/user/.sbt/boot/update.log for complete log) 
Error: Could not retrieve sbt 0.13.11 

다운로드가 실패했습니다. 내가 파일을하지만 난 이유를 알아낼 수 없습니다. 내가 발견 한 유일한 관련 게시물은 this one입니다. 하지만 난 16.04.1

답변

0

오류가 있었다

내가 우분투에서 일하고 있어요 ...

가 다시 설치하고 모든 일이 도움이되지 않았다 청소 ... 그것은 연결 문제인지 모르겠어요 openjdk-9의 인증서 내에서. 내가 this post을 발견했던 실패한 다운로드 해결하기 위해 다음

제거 오픈 JDK 9 :

sudo apt-get remove openjdk-9-* 

설치 오픈 JDK 8을 :

sudo apt-get install openjdk-8-jdk 

다시 SBT : (Reference)

echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list 
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823 
sudo apt-get update 
sudo apt-get install sbt 

는 이렇게 후, 실행할 수 있었다

sbt compile 
관련 문제