Error: Train b86ab49a-115a-4a14-ac14-e32d5a8b9267 failed with "No module named 'catboost'",
Suggestion: Add `debug=True` parameter to your `layer.run()` to see server logs
I got this error even after importing catboost any help ?
Correct @koleshjr, this is how you specify the packages, you can also pass the version numbers like this @pip_requirements(packages=["catboost==x.x.x","seaborn==x.x.x"])
You have to install it in ur env too,
'pip install catboost' in the notebook would solve it
Oh solved it. Thanks
@pip_requirements(packages=["catboost","seaborn"])
Correct @koleshjr, this is how you specify the packages, you can also pass the version numbers like this @pip_requirements(packages=["catboost==x.x.x","seaborn==x.x.x"])