Python Forum
catboost - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: catboost (/thread-34874.html)



catboost - dawid294 - Sep-10-2021

Hello can you help me , I tried install catboost but i have issue. I use jupyter notebook. Thank you

from catboost import CatBoostClassifier
from catboost import CatBoostRegressor

ModuleNotFoundError Traceback (most recent call last)
<ipython-input-93-45b7ed4523d3> in <module>
51 from sklearn.metrics import balanced_accuracy_score
52
---> 53 from catboost import CatBoostClassifier
54 from catboost import CatBoostRegressor
55

ModuleNotFoundError: No module named 'catboost'


RE: catboost - Larz60+ - Sep-10-2021

type pip list from same location that you are running your script, and see if you find catboost in the list
You may have installed the catboost package to a different version of python (if you have more than one)