Skip to content

Instantly share code, notes, and snippets.

@naarkhoo
Created October 18, 2021 08:03
Show Gist options
  • Save naarkhoo/10b124df03ca24a7e2e9aee8145fb383 to your computer and use it in GitHub Desktop.
Save naarkhoo/10b124df03ca24a7e2e9aee8145fb383 to your computer and use it in GitHub Desktop.
install datatable
RUN apt-get update && apt-get install -y \
xz-utils \
build-essential \
&& rm -rf /var/lib/apt/lists/* \
&& curl -SL https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/clang+llvm-10.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz \
| tar -xJC . && \
mv clang+llvm-10.0.0-x86_64-linux-gnu-ubuntu-18.04 clang_10.0.0 && \
echo 'export PATH=/clang_10.0.0/bin:$PATH' >> ~/.bashrc && \
echo 'export LD_LIBRARY_PATH=/clang_10.0.0/lib:$LD_LIBRARY_PATH' >> ~/.bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment