miniconda3

This commit is contained in:
Engineer-of-Stuff 2022-09-07 18:55:48 -06:00 committed by GitHub
parent 85cc7de58d
commit 28e860c6a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -11,8 +11,12 @@
"outputs": [],
"source": [
"# Download and run the Anaconda3 installer\n",
"!wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh\n",
"!bash /notebooks/Anaconda3-2022.05-Linux-x86_64.sh -b -f -p /notebooks/anaconda3"
"import sys\n",
"%cd /notebooks/\n",
"!wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh\n",
"!bash ./Miniconda3-latest-Linux-x86_64.sh -b -f -p /usr/local # Sorry, but it MUST be installed in /usr/local\n",
"sys.path.append('/usr/local/lib/python3.7/site-packages/')\n",
"!rm Miniconda3-latest-Linux-x86_64.sh"
]
},
{