hls4ml-tutorial icon indicating copy to clipboard operation
hls4ml-tutorial copied to clipboard

What is the password for root privileges?

Open robinupup opened this issue 1 year ago • 2 comments

In Docker without vivado . I want to install sqlite3 , so I use "sudo apt-get install sqlite3". But I don't know username "jovyan" 's password. Could you please give me password?

robinupup avatar Apr 25 '24 05:04 robinupup

Plzzzzz. Need the same thing. I need it because the build wouldn't run and I need to manually add source /opt/Xilinx/Vivado/2019.2/settings64.sh to .bashrc

qcsui avatar Jul 02 '24 19:07 qcsui

Plzzzzz. Need the same thing. I need it because the build wouldn't run and I need to manually add source /opt/Xilinx/Vivado/2019.2/settings64.sh to .bashrc

just found out that if someone else is also encountering the same problem with the vivado path: use the following:

default_xilinx_vivado_path = '/opt/Xilinx/Vivado/2019.2'
xilinx_vivado_path = os.environ.setdefault('XILINX_VIVADO', default_xilinx_vivado_path)
os.environ['PATH'] = xilinx_vivado_path + '/bin:' + os.environ['PATH']
print(f"XILINX_VIVADO is set to: {os.environ['XILINX_VIVADO']}")
print(f"PATH is set to: {os.environ['PATH']}")

qcsui avatar Jul 03 '24 11:07 qcsui