I see others seem to be using python3, but when I install boxsdk using pip, I can only run the little program snippet using python2:
i@raspberrypi:~ $ python3 boxInit.py
Traceback (most recent call last):
File "boxInit.py", line 1, in
from boxsdk import OAuth2, Client
ModuleNotFoundError: No module named 'boxsdk'
In the past when I've used pip it was pip for python2, and pip3 for python3, but pip3 can't find boxsdk. So...how do I install boxsdk so that it can be seen by python3?
I must be missing something simple since others are using python3. What is it?
Tom