Open CODERED555 opened 9 months ago
I encountered the same error and resolved it. The error originated from python3 setup.py install
. If you replace install
with build
, it will work for you.
Here is my solution:
Install Ninja:
apt-get install ninja-build
Build using a different command:
python3 setup.py build
pip3 install .
Test:
python3 test.py
when I try to sh ./make.sh,it shows that ModuleNotFoundError: No module named 'torch',how can i solve this problem.