Reputation: 23
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
Upvotes: 1
Views: 6269
Reputation: 5
Note: you may need to restart the kernel to use updated packages.
Upvotes: 0
Reputation: 420
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.
Upvotes: 4