2026-01-02 15:43:51 +06:00
|
|
|
mkdir -p ~/miniconda3
|
|
|
|
|
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh
|
|
|
|
|
bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3
|
|
|
|
|
rm ~/miniconda3/miniconda.sh
|
|
|
|
|
source ~/miniconda3/bin/activate
|
|
|
|
|
conda init --all
|
2026-01-03 13:16:14 +06:00
|
|
|
pip install -r requirements.txt
|
|
|
|
|
sudo apt update -y
|
|
|
|
|
sudo apt install build-essential curl -y
|
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
|
|
|
source $HOME/.cargo/env
|
2026-01-03 13:20:39 +06:00
|
|
|
rustc in_memory_db/in_mem_db.rs -o in_memory_db/in_mem_db
|