We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Line 14 of the setup.py gives out an error if torch is not found in the system, since the sys library is not imported in the beginning. sys.exit(1)
sys.exit(1)
The following line should be moved to the beginning of the setup.py file to solve this issue. import sys
import sys