keras_frcnn
keras_frcnn copied to clipboard
Can not install Keras 2.0.3
While I try to using this code, I found I can not install keras in version 2.0.3, at first, i useconda install keras==2.0.3
, but I failed, then I search keras in conda, but I foud 2.0.2 and 2.0.4, no 2.0.3, hope help
I wonder that you need to install from the source code. For example,
git clone git://github.com/keras-team/keras.git -b 2.0.3 ./src
pip install -e /src
or install other version of keras! please refer to #6 .
Hi @DeZhao-Zhang , You can install this version by pip install keras==2.0.3 Same for any packages for future reference! Cheers!