conda Install conda packages locally Below is code that can be installed into a code cell of a jupyter notebook to install conda packages.!conda install opencvPlease note that once your container stops and restarts this will reset
python Install Python Packages Locally Below is code that can be inserted into a cell of a Jupyter notebook to install python packages. #Define PIP Installer import pip def install(package): pip.main(['install','--upgrade', package]) #Notebook Requirements