ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

记录 安装vivado 2020.1

2021-09-22 14:31:29  阅读:634  来源: 互联网

标签:java Source -- Unknown 2020.1 vivado xilinx installer 安装


参考: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

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有