I've successfully installed Xgboost in windows with Pycharm Python, and it is working. However, in Jupyter NoteBook, it is not working.
import xgboost as xgb
---> 12 import xgboost as xgb
ModuleNotFoundError: No module named 'xgboost'
In Jupyter the xgboost package is at:
> !pip install xgboost
Requirement already satisfied: xgboost in c:\users\sifangyou\anaconda3\lib\site-packages\xgboost-0.6-py3.6.egg
Requirement already satisfied: numpy in c:\users\sifangyou\anaconda3\lib\site-packages (from xgboost)
Requirement already satisfied: scipy in c:\users\sifangyou\anaconda3\lib\site-packages (from xgboost)
However, my xgboost is installed in: C:\Users\sifangyou\xgboost\python-package
How can I direct Jupyter to the correct xgboost package location?