jkjung-avt / jetson_nano

This repository is a collection of scripts/programs I use to set up the software development environment on my Jetson Nano, TX2, and Xavier NX.
MIT License
293 stars 134 forks source link

can not import #1

Closed prologueyan-hr closed 5 years ago

prologueyan-hr commented 5 years ago

can not import caffe I follow caffe ssd installation。But after make i still can not import caffe

jkjung-avt commented 5 years ago

If you want to be able to import caffe from python3 directly, you need to let python3 add ${HOME}/project/ssd-caffe/python as one of the paths for importing packages. For example, you could add the following to your ~/.bashrc:

export PYTHONPATH=${HOME}/project/ssd-caffe/python

Thanks for pointing this out. I shall find time to add this into my blog post.

prologueyan-hr commented 5 years ago

thanks a lot!