Issue
I am trying to uninstall my current version of keras and install an older version using:
!pip uninstall keras
!pip install keras==2.1.2
The return I get is :
Uninstalling Keras-2.1.2:
Would remove:
/home/nbuser/anaconda3_501/lib/python3.6/site-packages/Keras-2.1.2.dist-info/*
/home/nbuser/anaconda3_501/lib/python3.6/site-packages/keras/*
Proceed (y/n)?
Could I please get help with how to select yes?
Solution
You can't interact with shell commands after you launch them so you have to either pass the --yes flag:
!pip install keras==2.1.2 --yes
or you can execute your command outside of ipython (jupyter).
Answered By - SamrajM
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.