You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
running setup.py in the root path of this repo showing:
Traceback (most recent call last):
File "setup.py", line 3, in <module>
import neural_renderer
File "/new_disk_1/antonio/neural_renderer/neural_renderer/__init__.py", line 1, in <module>
from cross import cross
ModuleNotFoundError: No module named 'cross'
I changed all absolute imports to relative ones in the regarding file and it did the work, now ./neural_renderer/__init__.py looks like:
running
setup.py
in the root path of this repo showing:I changed all absolute imports to relative ones in the regarding file and it did the work, now
./neural_renderer/__init__.py
looks like:Adding
./neural_renderer
to$PYTHON_PATH
temporarily should do the same thing. I just feel this is worth a note in README.The text was updated successfully, but these errors were encountered: