Last active
May 10, 2024 15:34
-
-
Save rajivmehtaflex/765f1959cac6703c02341f424dea0aa1 to your computer and use it in GitHub Desktop.
LLM on Fire
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh | |
source $HOME/.cargo/env | |
cargo --version | |
sudo apt install libssl-dev | |
sudo apt install pkg-config | |
mkdir ~/.cache/huggingface | |
touch ~/.cache/huggingface/token | |
echo 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 > ~/.cache/huggingface/token | |
git clone https://github.com/EricLBuehler/mistral.rs.git | |
cd mistral.rs | |
cargo build --release | |
cp ./target/release/mistralrs-server ./mistralrs_server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment