我在此之后安装了 sbt :http://www.scala-sbt.org/release/docs/Installing-sbt-on-Linux.html
现在,我正试图 firrtl 设置
https://github.com/ucb-bar/firrtl
但是" sbt compile"抛出错误:
<RelativeLayout>
<ScrollView>
<LinearLayout>
<RelativeLayout1>
<RelativeLayout2>
</ Closing for each layout>
某些文件的下载失败,但我无法弄清楚原因。 我找到的唯一相关帖子是this one。但我不确定它是否是一个连接问题...
重新安装和清理整件事情没有帮助...
我正在使用ubuntu 16.04.1
答案 0 :(得分:1)
错误在openjdk-9的证书范围内。我找到this post并执行以下操作来解决失败的下载问题:
卸载OpenJDK 9 :
QComboBox:item {
padding-left: 20px; /* move text right to make room for tick mark */
}
QComboBox:item:selected {
padding-left: 20px; /* move text right to make room for tick mark */
border: 2px solid black;
}
QComboBox:item:checked {
padding-left: 20px; /* move text right to make room for tick mark */
font-weight: bold;
}
安装OpenJDK 8 :
sudo apt-get remove openjdk-9-*
重新安装sbt :( Reference)
sudo apt-get install openjdk-8-jdk
这样做后,我能够执行
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