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
pip install git+https://github.com/eDIMESLab/MedicalImageAnonymizer or pip install . in a clone should install necessary requirements for you if setup.py is well constructed, but it doesn't.
in turn imports DICOM_anonymizer.py which imports pydicom, which is not installed yet unless one manually installs the requirements in advance, which again should not be needed.
Please either move build.py out of the MedicalImageAnonymizer subdirectory or just put those two contained functions get_requires and read_description directly into setup.py which is the only place they are used.
The text was updated successfully, but these errors were encountered:
pip install git+https://github.com/eDIMESLab/MedicalImageAnonymizer
orpip install .
in a clone should install necessary requirements for you if setup.py is well constructed, but it doesn't.The problem is that your setup.py in
MedicalImageAnonymizer/setup.py
Line 14 in a2b03ee
MedicalImageAnonymizer.__init__
andMedicalImageAnonymizer/MedicalImageAnonymizer/__init__.py
Line 6 in a2b03ee
Please either move build.py out of the MedicalImageAnonymizer subdirectory or just put those two contained functions
get_requires
andread_description
directly into setup.py which is the only place they are used.The text was updated successfully, but these errors were encountered: