Issue
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
Solution
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 Answer Checked By - Willingham (WPSolving Volunteer)