13 lines
504 B
Bash
13 lines
504 B
Bash
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
|
|
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
|
|
rustc in_memory_db/in_mem_db.rs -o in_memory_db/in_mem_db
|