Today I successfully installed Python 3.9.7 and the latest Pycharm version. I also installed the Dropbox API via the command:
pip install dropbox
But my ONE-line Python program:
import dropbox
fails with:
Traceback (most recent call last):
File "G:\pytest\main.py", line 2, in <module>
import dropbox
ModuleNotFoundError: No module named 'dropbox'
What am I doing wrong? How can I load the Dropbox APIs?