jondeaton / BraTS18-Project

Brain tumor segmentation using fully-convolutional deep neural networks.
https://www.med.upenn.edu/sbia/brats2018/data.html
52 stars 18 forks source link

Installing Required Dependencies #3

Open andygreg opened 5 years ago

andygreg commented 5 years ago

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?

jondeaton commented 5 years ago

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

XavierScherschligt commented 5 years ago

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