R packages fail to load in code environment

Options
mark
mark Registered Posts: 2 ✭✭✭✭

Hello,

When I try to load packages in a code environment, there are some packages I can load successfully (e.g., ggplot2), but others that fail. I get the error messages, as contained in the logs below:


In file included from stringdist.h:26:0,
from Rstringdist.c:27:
qtree.h:5:10: fatal error: omp.h: No such file or directory
#include <omp.h>
^~~~~~~
compilation terminated.
make: *** [Rstringdist.o] Error 1
ERROR: compilation failed for package ‘stringdist’
* removing ‘/home/dataiku/dss/code-envs/R/env_name/R.lib/stringdist’

In install.packages(toInstall, "/home/dataiku/dss/code-envs/R/env_name/R.lib", :
installation of package ‘stringdist’ had non-zero exit status

Can anyone help me?

Answers

  • Alex_Combessie
    Alex_Combessie Alpha Tester, Dataiker Alumni Posts: 539 ✭✭✭✭✭✭✭✭✭
    Options

    Hi Mark,

    Indeed this error relates to the GCC setup on your Mac.

    One of the ways to solve it on macOS is to install Xcode and its command line tools. Then you can verify the installation by running:


    gcc -v

    in your terminal.

    Let us know if this solves your issue.

    Cheers,

    Alex

Setup Info
    Tags
      Help me…