SBT 错误: “未能构建终端; 退回到不受支持的...”

我今天在 SBT 中遇到了一个错误,最好用 sbt sbt-version命令来显示:

17年5月29日:

eric@linux-x2vq:~$ sbt sbt-version
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option
MaxPermSize=256M; support was removed in 8.0
[info] Set current project to eric (in build file:/home/eric/)
[info] 0.13.13

6/1/17运行:

eric@linux-x2vq:~$ sbt sbt-version
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option
MaxPermSize=256M; support was removed in 8.0
[ERROR] Failed to construct terminal; falling back to unsupported
java.lang.NumberFormatException: For input string: "0x100"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:580)
at java.lang.Integer.valueOf(Integer.java:766)
at jline.internal.InfoCmp.parseInfoCmp(InfoCmp.java:59)
at jline.UnixTerminal.parseInfoCmp(UnixTerminal.java:233)
at jline.UnixTerminal.<init>(UnixTerminal.java:64)
at jline.UnixTerminal.<init>(UnixTerminal.java:49)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at java.lang.Class.newInstance(Class.java:442)
at jline.TerminalFactory.getFlavor(TerminalFactory.java:209)
at jline.TerminalFactory.create(TerminalFactory.java:100)
at jline.TerminalFactory.get(TerminalFactory.java:184)
at jline.TerminalFactory.get(TerminalFactory.java:190)
at sbt.ConsoleLogger$.ansiSupported(ConsoleLogger.scala:123)
at sbt.ConsoleLogger$.<init>(ConsoleLogger.scala:117)
at sbt.ConsoleLogger$.<clinit>(ConsoleLogger.scala)
at sbt.GlobalLogging$.initial(GlobalLogging.scala:43)
at sbt.StandardMain$.initialGlobalLogging(Main.scala:64)
at sbt.StandardMain$.initialState(Main.scala:73)
at sbt.xMain.run(Main.scala:29)
at xsbt.boot.Launch$$anonfun$run$1.apply(Launch.scala:109)
at xsbt.boot.Launch$.withContextLoader(Launch.scala:128)
at xsbt.boot.Launch$.run(Launch.scala:109)
at xsbt.boot.Launch$$anonfun$apply$1.apply(Launch.scala:35)
at xsbt.boot.Launch$.launch(Launch.scala:117)
at xsbt.boot.Launch$.apply(Launch.scala:18)
at xsbt.boot.Boot$.runImpl(Boot.scala:41)
at xsbt.boot.Boot$.main(Boot.scala:17)
at xsbt.boot.Boot.main(Boot.scala)


[info] Set current project to eric (in build file:/home/eric/)
[info] 0.13.13

我的 SBT 或 Java 设置没有任何更改(据我所知)。

有什么办法可能导致这种情况或如何修复错误?

谢谢!

29606 次浏览

我找到了导致这个问题的软件包: ncurses。我将 ncurses降级为 ncurses-6.0+20170429-1版本(我使用 Arch Linux) ,SBT 启动也很好。

Arch Linux 的步骤:

cd /var/cache/pacman/pkg
sudo pacman -U ncurses-6.0+20170429-1-x86_64.pkg.tar.xz # or some other older version

Mac 的步骤: 参见 https://github.com/jline/jline2/issues/281

我认为这个问题是由 ncurses 版本20170506引入的,参见: http://invisible-island.net/ncurses/NEWS.html#index-t20170506

+ modify tic/infocmp display of numeric values to use hexadecimal when
they are "close" to a power of two, making the result more readable.

我在 SBT 问题追踪器上提交了一个问题: https://github.com/sbt/sbt/issues/3240

编辑: SBT version 0.13.16包含了该问题的修复。

我也遇到过同样的问题,特别是当 ABc0环境变量设置为 xterm-256color时。把它设置成不同的值为我解决了这个问题,例如。

export TERM=xterm-color

sbt命令只是一个脚本,它在最开始加载 $HOME/.sbtconfig,所以只需要将

export TERM=xterm-color

如@user3113045在 conf 文件中所说,sbt 将工作。在这种情况下,您的其他术语命令仍将使用 xterm-256color

您可以将 export TERM=xterm-color添加到 /usr/share/sbt/bin/sbt的顶部,因为 $HOME/.sbtconfig是不推荐的。

如果可以,将 build.properties 中的 sbt 版本更改为更高版本。13.16对我来说很有用。

一年过去了... ... 现在它发生在我身上。


因此,诅咒确实发生了变化,而相应的 是的部分是... ... 我想... ... 可能只是基于随机猜测测试和观察/错误来实现的,没有任何规范或 RFC。(到目前为止,sbt 是我所知道的唯一一个有这种 ncurses 问题的程序。)

如果你不能简单地使用 升级或者 降低护士的等级,你可以按照其他答案中提到的那样改变术语环境变量。

微不足道的修正:

如果 sbt 脚本是一些 bash 脚本(很有可能,除非您运行 DOS 的. bat 文件)

$ file /usr/bin/sbt
/usr/bin/sbt: Bourne-Again shell script, ASCII text executable

,那么添加这个变通方法就足够了:

TERM="${TERM/xterm-256color/xterm-color}"

当我使用内部使用 sbt 的 activator 时遇到了这个问题。 我正在使用 Ubuntu,这个错误让我很沮丧。 我在竞选时就开始面临这个问题

$activator gen-idea (根据 intellij 是遗留的工具)

在此之后,我试图删除所有缓存,这个工具生成。

我删除了。Ivy 和。我的主文件夹中的 sbt 目录,并运行 activator clean Files 编译命令解决了我的问题。

我不能写评论,因为我的分数太低,但 user3113045的答案工作时,我添加 export TERM=xterm-color到我的 .zshrc文件

这解决了我的问题(Linux 用户) :

  1. 打开终端
  2. 导航到您的项目目录
  3. 在您的终端中输入“ export TERM = xterm-color”,但不要引号
  4. 按回车键

就这样,然后你就可以走了。

对于 Ubuntu 20.04用户,打开终端并运行以下 CMD

  • 转到“/usr/share/sbt/bin”目录($cd/usr/share/sbt/bin)
  • 授予编辑文件的权限($sudo chmod-R 777 sbt)
  • 打开此目录中的 是的文本文件($nano sbt)
  • 在顶部添加这个“ export TERM = xterm-color”cmd 并保存(Ctrl + X)

例如:-

#!/usr/bin/env bash
export TERM=xterm-color
set +e