其他分享
首页 > 其他分享> > 记录 安装vivado 2020.1

记录 安装vivado 2020.1

作者:互联网

参考:Xilinx Vivado Vitis 2020.1 Installation / Applications & Desktop Environments / Arch Linux Forums

安装时出现如下错误:

Exception in thread "SPLASH_LOAD_MESSAGE" java.lang.IllegalStateException: no splash screen available
        at java.desktop/java.awt.SplashScreen.checkVisible(Unknown Source)
        at java.desktop/java.awt.SplashScreen.getBounds(Unknown Source)
        at java.desktop/java.awt.SplashScreen.getSize(Unknown Source)
        at com.xilinx.installer.gui.H.run(Unknown Source)
Exception in thread "main" java.lang.IllegalStateException: no splash screen available
        at java.desktop/java.awt.SplashScreen.checkVisible(Unknown Source)
        at java.desktop/java.awt.SplashScreen.close(Unknown Source)
        at com.xilinx.installer.gui.G.b(Unknown Source)
        at com.xilinx.installer.gui.InstallerGUI.G(Unknown Source)
        at com.xilinx.installer.gui.InstallerGUI.e(Unknown Source)
        at com.xilinx.installer.api.InstallerLauncher.main(Unknown Source)

解决方法:

这会将文件解压缩到 ~/xilinx-installer 目录,进入那个文件夹

./Xilinx_Unified_2020.1_0602_1208_Lin64.bin --noexec --target ~/xilinx-installer

下一步是输入您的用户名和密码,以生成身份验证令牌(这是您下载程序所必需的)

./xsetup -b AuthTokenGen

然后创建一个配置文件,稍后将用于安装

./xsetup -b ConfigGen

它会询问几个基本问​​题,然后告诉您配置文件的存储位置。打开该配置文件并根据需要修改它。它是纯文本格式,因此很容易修改

然后最后安装它

./xsetup --batch Install --agree XilinxEULA,3rdPartyEULA,WebTalkTerms --location ~/Xilinx/Vivado --config "/path/to/.Xilinx/install_config.txt"

运行 ./xsetup --help 里面有很多信息,会告诉你这些标志的含义

--batch Install: will stop the gui installer
--agree XilinxEULA,3rdPartyEULA,WebTalkTerms : is for agreeing to the terms and conditions for those three things
--location ... : is where you want to install it
--config ... : is the location of the config file you generated

标签:java,Source,--,Unknown,2020.1,vivado,xilinx,installer,安装
来源: https://blog.csdn.net/m0_50907280/article/details/120414156