PyCharm does not recognize modules installed in development mode

后端 未结 8 1511
猫巷女王i
猫巷女王i 2020-12-14 00:37

I have two pure python projects in PyCharm 3.4.1 Professional Edition. The first one, let\'s call it p (like package), is structured as a setuptools package (i.

8条回答
  •  再見小時候
    2020-12-14 01:06

    I just had same problem like yours.

    Seems pycharm can not recognize module installed directly by setup.py, but can recognize module installed by pip. Finally, I use pip install src_path, but I got to pip install it everytime I modify source code.

提交回复
热议问题