Hi arc
Based on the name, my guess is that the module you are attempting to import and use is only within the ecosystem of codeacademy’s online portal for learning and not installed locally in your directories for import access. Hope this helps.
Hello,
I found the solution in case someone has the same question.
I open the file “codecademySQL.py” in Jupyter and change the directory in # Load some csv data session.
Need to change it to your local folder that all your csv files located.
For example I have changed mine as below:
visits = pd.read_csv(‘/users/yishan/downloads/musclehub_project/visits.csv’)
fitness_tests = pd.read_csv(‘/users/yishan/downloads/musclehub_project/fitness_tests.csv’)
applications = pd.read_csv(‘/users/yishan/downloads/musclehub_project/applications.csv’)
purchases = pd.read_csv(‘/users/yishan/downloads/musclehub_project/purchases.csv’)
Hope it helps!