Issue
A kaggle (private) notebook of mine was created an year ago so it uses an environment (package versions) of the date when it was created. To use the latest package versions, there's an option to change Environment Preferences from within the Edit
page of a notebook. But turns out, the option is disabled.
The only other way to get the latest package versions now is to upgrade them all manually by pip
calls from within the notebook for each module. This was working fine until I required a newer version of pandas
. You need to upgrade any module before importing in kaggle to use the upgraded version, otherwise it uses the old one. And pandas
is one of the few libraries that is preloaded with every notebook start, so an upgrade call to it still does not use the latest pandas. What can I do here? Any tips on how I can enable the environment preference option?
Solution
It was a problem on Kaggle's end. They have rolled out a fix.
If it happens again, create a thread on kaggle forum I guess, just like I did.
Answered By - callmeanythingyouwant
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.