Skip to content

Instantly share code, notes, and snippets.

@fomightez
Last active June 4, 2022 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fomightez/b596c808b146d0b848eb0337d74abd16 to your computer and use it in GitHub Desktop.
Save fomightez/b596c808b146d0b848eb0337d74abd16 to your computer and use it in GitHub Desktop.

Install Conda/MiniConda as per your choice

For Conda (https://www.anaconda.com/products/distribution)

wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh
bash Anaconda3-2022.05-Linux-x86_64.sh

For MiniConda (https://docs.conda.io/en/latest/miniconda.html#linux-installers)

wget https://repo.anaconda.com/miniconda/Miniconda3-py39_4.12.0-Linux-x86_64.sh 
bash Miniconda3-py39_4.12.0-Linux-x86_64.sh

Install Docker

sudo apt install docker.io

Running Docker without sudo

sudo groupadd docker
sudo usermod -aG docker $USER
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"id": "b1e345cf-5798-43d3-8cc4-3fa2d22cbf41",
"metadata": {},
"source": [
"### Install Conda/MiniConda as per your choice \n",
"\n",
"For Conda (https://www.anaconda.com/products/distribution)\n",
"\n",
"```bash\n",
"wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh\n",
"bash Anaconda3-2022.05-Linux-x86_64.sh\n",
"```\n",
"\n",
"For MiniConda (https://docs.conda.io/en/latest/miniconda.html#linux-installers) \n",
"```bash\n",
"wget https://repo.anaconda.com/miniconda/Miniconda3-py39_4.12.0-Linux-x86_64.sh \n",
"bash Miniconda3-py39_4.12.0-Linux-x86_64.sh\n",
"```\n",
"### Install Docker\n",
"\n",
"```bash\n",
"sudo apt install docker.io\n",
" ```\n",
"Running Docker without `sudo`\n",
"```bash\n",
"sudo groupadd docker\n",
"sudo usermod -aG docker $USER\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "c9fe4f11-d9a7-42fa-a9ec-5e43d978380f",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment