Xilinx / Vitis-AI

Vitis AI is Xilinx’s development stack for AI inference on Xilinx hardware platforms, including both edge devices and Alveo cards.
https://www.xilinx.com/ai
Apache License 2.0
1.49k stars 630 forks source link

Install C++ libraries on board (ZCU102) #383

Closed Cliu2 closed 3 years ago

Cliu2 commented 3 years ago

Hi,

I wrote a customized application in C++, but with some dependency libraries. I want to compile the program on my ZCU102 and run it, but an error pops because the libraries have not been installed.

The libraries I need to install are: tclap, jsoncpp, and Eigen3. With Ubuntu, I can do sudo apt install XXX to install these libraries, but I wonder how can I install them on the ZCU102?

Thank you very much.

Eagle223 commented 3 years ago

Hello, You can download rmp packages you need and use rpm to install it, or compile from source code.

Cliu2 commented 3 years ago

Thank you for the help. I tried compiling from source code and it works for me.