Skip to content Skip to sidebar Skip to footer

Warnings Don't Work About Unresolved References After Using Development Install

I have a bug with PyCharm, after I use development install pip install -v -e . the IDE does not warn me about any unresolved references. For example, with unresolved references nor

Solution 1:

It is caused by the Reader mode, please vote for https://youtrack.jetbrains.com/issue/PY-45708 (thumbs up near the title)

Solution 2:

Just to extend @user2235698 answer, this is happened to me too due to Reader mode being activated in my IDE.

You can easily disable this by:

  • Open the settings (ctrl + alt + s)
  • Search for "Reader Mode" in the search box or navigate to Editor | Reader Mode
  • Disable the Enable Reader Mode option
  • Click on apply

Post a Comment for "Warnings Don't Work About Unresolved References After Using Development Install"