mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2026-05-05 13:41:35 +00:00
16 lines
237 B
Bash
Executable File
16 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "${0%/*}"
|
|
git submodule update --init --recursive
|
|
|
|
sudo apt update
|
|
sudo apt install libtbb-dev
|
|
sudo apt install libcurl4-openssl-dev
|
|
sudo apt install libaio-dev
|
|
|
|
cd third_party/xxHash/
|
|
make -j
|
|
sudo make install
|
|
cd ../..
|
|
|