ModuleNotFoundError with pynq communityu projects

Hello,I found I can’t run the .ipynb’s cell to import some backage in the project.It always shows ModuleNotFoundError when I impoet some package in corresponding project

This one from community project:FIR filter example


This one from community project:ZipML-PYNQ

I download two projects in zip type and then upload on pynq-z2 and unzip them,and them run cells directly.Should I change some path or another operations in advance.

You need to install the Python packages, not just copy them to the board.

If you copy the files to the board, you can run a local pip install:

sudo pip3 install ./<copied_package_folder>

Cathal