I like PyCharm and used it before for my Python projects, but I just started talking to IronPython and I can't figure out how to make PyCharm or any other IDE (except VS, which works fine) recognizes .NET libraries.
For example, I have a code:
from System.Environment import * path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
The above code works fine, but the "System" part is grayed out everywhere with the message "Unresolved reference System". The IronPython documentation explains that System is not a module, but rather a namespace. If I do type(system) , I get <type 'namespace#'> . So, is there a way to get PyCharm / PyDev to recognize namespaces? On the one hand, PATH is fine, everything is fine.
source share