- A Linux-based operating system
wget
installed on your system
This script automates the installation of Miniconda on a Linux system. It downloads the Miniconda installer, installs it, and sets up the environment.
To learn more about Miniconda, visit the official documentation by clicking on this link: Miniconda Documentation
Instructions:
- Navigate to the
bin
directory:
cd bin
- Make the script executable:
chmod +x install_miniconda.sh
- Run the script:
./install_miniconda.sh
This script automates the installation of Docker on a Linux system. It downloads and installs the latest version of Docker engine and Docker Compose, adds the current user to the docker
group, and sets up the environment.
To learn more about Docker, visit the official documentation by clicking on this link: Docker Documentation
Instructions:
- Navigate to the
bin
directory:
cd bin
- Make the script executable:
chmod +x install_docker.sh
- Run the script:
./install_docker.sh
To uninstall Miniconda, run the following command:
rm -rf ~/miniconda
To uninstall Docker, run the following commands:
sudo apt-get purge docker-ce docker-ce-cli containerd.io
sudo rm -rf /var/lib/docker
sudo groupdel docker
Note: The above commands will remove Docker and all its associated files from your system. Use with caution.