BaseModelAI / cleora

Cleora AI is a general-purpose model for efficient, scalable learning of stable and inductive entity embeddings for heterogeneous relational data.
https://cleora.ai
Other
485 stars 51 forks source link

To build cleora on Ubuntu 20.04 needs clang-11 #24

Closed AlexMikhalev closed 2 years ago

AlexMikhalev commented 3 years ago

Hello all, Great project, missing dependency in readme dependency on clang-11 (simd-json dependency) for ubuntu 20.04 I had to install from llvm repo:

export LLVM_VERSION=12
sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main"
sudo apt-get install -y clang-$LLVM_VERSION lldb-$LLVM_VERSION lld-$LLVM_VERSION clangd-$LLVM_VERSION
piobab commented 3 years ago

@AlexMikhalev thanks! We will take a look and fix what is needed.

piropaolo27 commented 2 years ago

I did actually test it on a clean Ubuntu 20.04 installation, and no particular clang version was actually needed - although of course gcc and g++ were.

$ sudo apt install gcc
$ sudo apt install g++

for reference

$ rustc --version
rust 1.56.1 (59eed8a2a 2021-11-01)
$ cargo --version
cargo 1.56.0 (4ed5d137b 2021-10-04)
piobab commented 2 years ago

@AlexMikhalev I close the issue. Let us know if you have other problems.