ModuleNotFoundError: No module named 'simple_salesforce'

Question:

I’m VERY new to python, but am somewhat familiar with Salesforce apex, so I thought I’d start out on a project.

I downloaded simple_salesforce to my raspberry pi, but whenever I try to run the import command so that I can login to Salesforce, it says the module is not found.

Can someone help me on where I’m going wrong? enter image description here

Asked By: michaelroach55

||

Answers:

You probably didn’t install the module, just downloaded it. Open a terminal and install it using pip:

pip install simple-salesforce

You might need to change “pip” to “pip3” as you’re using Python 3.

Answered By: Samuel

Note: you may need to restart the kernel to use updated packages.

Answered By: Douglas Harris