Importing libraries

whenever i try to import libraries such as pandas and quanl, i will always get the following error:

ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-4-7dd3504c366f> in <module>
----> 1 import pandas as pd

ModuleNotFoundError: No module named 'pandas'

Could you please help me out with this problem?

Hi Sean,



This error is because the package is not installed in your system. To install the package from the jupyter notebook itself, you can run the following commands:



!pip install pandas==0.23.4

!pip install quandl==3.4.5



This installs the compatible version for pandas (ver. 0.23.4) and Quandl (ver. 3.4.5). The compatible version number and list of packages required is mentioned in the ReadMe file located in the downloadable zip folder at the end of each course.



Hope this helps!