通常我在shell中导出一个环境变量,然后用
运行sbt控制台export SBT_OPTS="-Dcom.github.fommil.netlib.BLAS=com.github.fommil.netlib.NativeRefBLAS"
sbt console
运行我的代码需要环境变量。 我想在intellijidea中工作,但是当我点击"运行Scala控制台"显然,环境变量不存在,代码失败。
如何在intellijidea中配置SBT_OPTS?
答案 0 :(得分:0)
我找到的解决方案是执行以下操作
运行 - >编辑配置 - > Scala控制台 - > VM选项
并添加
" -Dcom.github.fommil.netlib.BLAS = com.github.fommil.netlib.NativeRefBLAS"