I am trying to set up the Python SDK on my Windows computer. When I use pip install squareup it tells me I have successfully installed, but when I python command the file I am using, it says that:
File “locations.py”, line 1, in
from square.client import Client
ImportError: No module named square.client
Is there a resource than can help with general set up and first steps with the Python SDK.
Is your pip looking at the same version of Python you’re using? If you do:
pip -V
python -V
does it show the same version of python for both? If not, your pip is installing it for the wrong python version. I believe to ensure pip is using the same as python, you can do something like python -m pip install squareup. Let me know if that doesn’t help of course.