1

I'm trying to install xgboost on win 10 but got this error :

C:\Users\Philippe>pip install xgboost
Collecting xgboost
  Using cached xgboost-0.6a2.tar.gz
No files/directories in C:\Users\Philippe\AppData\Local\Temp\pip-build-tnihtd1j\xgboost\pip-egg-info (from PKG-INFO)

Any idea ?

Jed
  • 43
  • 7

2 Answers2

0

Look this: https://stackoverflow.com/a/39811079/12568621

in summary:

  • download xgboost whl
  • open prompt
  • cd to folder where saved the file.
  • pip install "name-saved-file"
Leonardo
  • 120
  • 9
-1

This worked for me:

  1. Open a jupyter notebook.
  2. Type this in the cell and run
    !pip install xgboost

    My shell output

MBT
  • 21,733
  • 19
  • 84
  • 102
kongkip
  • 61
  • 1
  • 7
  • 1
    Please put your code into the question, not linked as an image. Otherwise if the host is removed, this answer is not helpful anymore. – 1stthomas Nov 09 '18 at 10:52