PyCharm doesn't recognise installed module

前端 未结 14 2280
闹比i
闹比i 2020-12-03 06:55

I\'m having trouble with using \'requests\' module on my Mac. I use python34 and I installed \'requests\' module via pip. I can verify this via running installation again an

14条回答
  •  抹茶落季
    2020-12-03 07:35

    On windows I had to cd into the venv folder and then cd into the scripts folder, then pip install module started to work

    cd venv
    cd scripts
    pip install module
    

提交回复
热议问题