kiriyamaX commited on
Commit
7f6fb5b
1 Parent(s): 5af3c27

Create aws_software_setup.sh

Browse files
Files changed (1) hide show
  1. aws_software_setup.sh +10 -6
aws_software_setup.sh CHANGED
@@ -1,10 +1,14 @@
1
  #!/bin/bash
2
 
3
- # miniconda
4
- cd ~/ && mkdir -p miniconda3 && wget https://repo.anaconda.com/miniconda/Miniconda3-py310_23.5.2-0-Linux-x86_64.sh -O ./miniconda3/miniconda.sh --no-check-certificate && bash ./miniconda3/miniconda.sh -b -u -p ./miniconda3 && rm ./miniconda3/miniconda.sh && ./miniconda3/bin/conda init bash && source ~/.bashrc && python -m pip install unibox ipykernel jupyter s5cmdpy && python -m ipykernel install --user --name=conda310
5
 
6
- # cloudflared
7
- cd ~/ && wget https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -O cfed && chmod +x cfed
 
 
 
 
8
 
9
- # s5cmd
10
- cd ~ && wget https://huggingface.co/kiriyamaX/s5cmd-backup/resolve/main/s5cmd_2.2.2_Linux-64bit/s5cmd && chmod +x s5cmd
 
1
  #!/bin/bash
2
 
3
+ # update
4
+ sudo apt-get update
5
 
6
+ # aws cli
7
+ cd ~/
8
+ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
9
+ sudo apt install unzip && unzip awscliv2.zip
10
+ sudo ./aws/install
11
+ rm awscliv2.zip
12
 
13
+ # btop
14
+ sudo snap install btop