Create aws_software_setup.sh
Browse files- aws_software_setup.sh +10 -0
aws_software_setup.sh
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|