Description
While trying to run the BRAIN TUMOR DETECTION [END 2 END] project, I encountered an error while installing the dependencies using:
pip install -r requirements.txt
The installation fails because requirements.txt contains:
According to pip's requirement syntax, an exact package version should use == rather than =.
Therefore, this line should be:
Error
The current requirement causes pip to return:
ERROR: Invalid requirement: 'keras=1.1.0'
Suggested fix
Change:
to:
I also noticed that the project specifies older versions of Python, TensorFlow, and Keras, so documenting the required legacy environment may be helpful for users trying to run the project with modern Python versions.
Thank you!
Description
While trying to run the BRAIN TUMOR DETECTION [END 2 END] project, I encountered an error while installing the dependencies using:
The installation fails because
requirements.txtcontains:According to pip's requirement syntax, an exact package version should use
==rather than=.Therefore, this line should be:
Error
The current requirement causes pip to return:
Suggested fix
Change:
to:
I also noticed that the project specifies older versions of Python, TensorFlow, and Keras, so documenting the required legacy environment may be helpful for users trying to run the project with modern Python versions.
Thank you!