我正在尝试使用Xgboost,但在安装时遇到问题。
我正在使用mac而我使用python notebook jupyter。我打开命令行并使用pip install xgboost
并成功安装,但当我尝试在代码中使用import xgboost as xg
时,我得到ImportError: No module named xgboost
任何人都可以帮助我吗?
答案 0 :(得分:0)
这可能来自于您有两个(或更多)python环境的事实。一个hacky解决方案是将它安装在Jupyter Notebook中(注意'!'):
!pip install xgboost