Answers for "install python 3.6 in google colab"

2

google colab install python package

!pip install scipy
Posted by: Guest on June-14-2021
0

install python 3.6 in colab

// Cell0:
%env PYTHONPATH=

// Cell1:
%%bash
MINICONDA_INSTALLER_SCRIPT=Miniconda3-4.5.4-Linux-x86_64.sh
MINICONDA_PREFIX=/usr/local
wget https://repo.continuum.io/miniconda/$MINICONDA_INSTALLER_SCRIPT
chmod +x $MINICONDA_INSTALLER_SCRIPT
./$MINICONDA_INSTALLER_SCRIPT -b -f -p $MINICONDA_PREFIX
Posted by: Guest on July-22-2021

Code answers related to "install python 3.6 in google colab"

Browse Popular Code Answers by Language