fastmachinelearning / hls4ml-tutorial

Tutorial notebooks for hls4ml
http://fastmachinelearning.org/hls4ml-tutorial/
273 stars 123 forks source link

What is the password for root privileges? #75

Open robinupup opened 2 months ago

robinupup commented 2 months ago

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?

qcsui commented 6 days ago

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 commented 5 days ago

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']}")