BraTS18-Project icon indicating copy to clipboard operation
BraTS18-Project copied to clipboard

Installing Required Dependencies

Open andygreg opened this issue 5 years ago • 2 comments

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?

andygreg avatar Mar 20 '19 13:03 andygreg

You can fix this by removing SimpleITKitk from the list of requirements in setup.py. I don't believe it is actually used anywhere.

jondeaton avatar Mar 25 '19 20:03 jondeaton

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",)

XavierScherschligt avatar Apr 11 '19 18:04 XavierScherschligt