I\'m developing software for Windows with Python. I am developing on Linux, and I am using Pylint to check my code. I can\'t get rid of the error:
F| Unabl
Question is quite old, but right now you can ignore modules with .pylintrc like:
.pylintrc
ignored-modules=module1,module2,...
I've used it to suppress uninstallable modules check with third-party CI tools, and it works just fine.