From 94755a7ab80e20adc9a099cba441e71b1b64cdb7 Mon Sep 17 00:00:00 2001 From: Camila Andrea Gonzalez Williamson Date: Fri, 8 Jan 2021 10:29:55 +0100 Subject: [PATCH] Add note in README about clang error while installing --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d9bad683b9..49cb8dd815 100644 --- a/README.md +++ b/README.md @@ -175,7 +175,13 @@ we also provide the following alternate lighter install options: * Install core + neural networks (PyTorch): `pip install 'u8darts[torch]'` * Install core + Facebook Prophet: `pip install 'u8darts[fbprophet]'` * Install core + AutoARIMA: `pip install 'u8darts[pmdarima]'` - + +Note: In case you run into errors with `clang` (the C compiler) set the variables `CC` and `CXX` as follows: +```bash +export CC=/usr/bin/clang +export CXX=/usr/bin/clang++ +``` + ### Running the examples only, without installing: If the conda setup is causing too many problems, we also provide a Docker image with everything set up for you and ready-to-use python notebooks with demo examples.