randomal
randomal

Reputation: 6592

Missing modules when running Jupyter notebook on aws

I'm running a Jupyter notebook on a virtual machine on AWS, and I am having issues loading modules. Apparently the notebook doesn't find the modules (see image below), but these are listed if I give the command !conda list. Does anyone have suggestions on how to fix this? Thanks!

enter image description here

Upvotes: 0

Views: 375

Answers (1)

willcrack
willcrack

Reputation: 1852

Try:

import sys 
!{sys.executable} -m pip install <your package>

Here’s a link that might help you find some more information on how to install python packages in jupyter

Upvotes: 1

Related Questions