4

I am trying to install 'datatable' for python using 'pip' as below, but I am getting error.

pip install datatable

Error shown is:

Find an LLVM installation
  Environment variable LLVM is not set
  Environment variable LLVM7 is not set
  Environment variable LLVM6 is not set
  Environment variable LLVM5 is not set
  Environment variable LLVM4 is not set
  Candidate directory `/usr/local/opt/llvm` not found
  The build will proceed without Llvm support

Determine the compiler
  Environment variable `CXX` is not set
  Environment variable `CC` is not set
  Llvm installation not found, cannot search for the clang++ compiler
  'compiler_cxx'
  Compiler `clang++.exe` is not found
  Compiler `gcc.exe` is not found

Prepare the environment
SystemExit: Suitable C++ compiler cannot be determined. Please specify a compiler executable in the `CXX` environment variable.

I even re-installed VC++ Compiler for Python and also updated:

pip install --upgrade setuptools
Pasha
  • 6,298
  • 2
  • 22
  • 34
RKh
  • 13,818
  • 46
  • 152
  • 265

1 Answers1

-1

If you are on Windows, then datatable will be installable directly via pip starting from version 0.11. Right now it is possible to install the development snapshots of the library by following the instructions at https://datatable.readthedocs.io/en/latest/install.html#install-on-windows.

Pasha
  • 6,298
  • 2
  • 22
  • 34