PyCharm intellisense for boto3

前端 未结 8 1256
长发绾君心
长发绾君心 2021-02-18 15:49

having problems seeing full intellisense (code completion) options in PyCharm. working with python 3.4 on Windows. the suggests are partially working:

import bot         


        
8条回答
  •  迷失自我
    2021-02-18 16:48

    Make sure that you:

    1. Install pyboto3 -> pip install pyboto3 | pip3.x install pyboto3
    2. Check your interpreter settings and verify that you see pyboto3 on the list
    3. Do a File -> Invalidate Caches/Restart

    After Pycharm restarts you should see intellisense working in your favor and all of the available methods for the service you are trying to use available to you!

提交回复
热议问题