Install xgboost on anaconda
I installed xgboost by following this link . It works fine with my python3. My question is - what do I need to do to make it work on my anaconda? I tried to import xgboost to my anaconda but failed. Can anyone help me with this? Thank you very much!
+3
zesla
source
to share
2 answers
You can install it through the conda-forge channel by running the following command:
conda install -c conda-forge xgboost=0.6a2
+4
ally-e
source
to share
you can do the following: 1. In anaconda Prompt enter command "anaconda search -t conda xgboost" it will show a bunch of package list according to OS 2. select the appropriate package name "xgboost" 3. and enter command "conda install -c mikesilva xgboost ", note: - my os is winner 64 ans python 3.6, so I choose mikesilve
+1
rahul verma
source
to share