BraTS18-Project
BraTS18-Project copied to clipboard
Installing Required Dependencies
When running
python setup.py install
I get the following error
Couldn't find index page for 'SimpleITKitk' (maybe misspelled?)
How can I fix this?
You can fix this by removing SimpleITKitk
from the list of requirements in setup.py
. I don't believe it is actually used anywhere.
In the event that the dependency is required, this problem can be fixed by simply adding a comma after "SimpleITK" in setup.py. The error given arises because in setyp.py "SimpleITK" "itk", appears. The two strings are spliced together because they lack a comma ("SimpleITK", "itk",)