ModuleNotFoundError: No module named 'canvasapi' #17

Closed
opened 2023-07-28 18:48:46 -06:00 by raymurt · 1 comment
raymurt commented 2023-07-28 18:48:46 -06:00 (Migrated from github.com)

I'm running this on my Mac. I've already installed canvasapi module to my computer by typing in the terminal:
pip install canvasapi

Later on, after having installed everything, I went ahead to run export.py by typing:
python3 export.py

Then I was greeted with the following:

Traceback (most recent call last):
  File "/Users/raymu/Downloads/canvas-student-data-export-master/export.py", line 7, in <module>
    from canvasapi import Canvas
ModuleNotFoundError: No module named 'canvasapi'
I'm running this on my Mac. I've already installed canvasapi module to my computer by typing in the terminal: `pip install canvasapi` Later on, after having installed everything, I went ahead to run export.py by typing: `python3 export.py` Then I was greeted with the following: ``` Traceback (most recent call last): File "/Users/raymu/Downloads/canvas-student-data-export-master/export.py", line 7, in <module> from canvasapi import Canvas ModuleNotFoundError: No module named 'canvasapi' ```
davekats commented 2023-09-06 09:40:43 -06:00 (Migrated from github.com)

Hi @raymurt, you might have two different versions of python and pip installed. Try running pip3 install canvasapi then python3 export.py

Hi @raymurt, you might have two different versions of python and pip installed. Try running `pip3 install canvasapi` then `python3 export.py`
Sign in to join this conversation.
No description provided.