I am using Spyder and I am trying to get Python Anaconda working on Ubuntu.
I am trying to test this code:
import pandas as pd
import quandl
df = quandl.get("WIKI/GOOGL")
print(df.head())
but I get ModuleNotFoundError : No Module named pandas
I have installed pandas in both ways:
conda install -c anaconda pandas
and
pip3 install pandas
yet I am still getting the error.



pip3 install pandas?python -c "import pandas"