fatal pylint error : ……can’t find ‘__main__’module in

Detailed map traversal, teach you to master the complex gremlin query debugging method>>>

fatal pylint error : ……can’t find ‘__ main__’ Module in
the reason is that pylint is not installed, so the prompt is not found__ main__ Module

Solution:
1 https://pypi.python.org/pypi/pylint Download the package, if you can understand it, just follow the operation
otherwise
2. Install astroid
Python – M PIP install astroid
If pip is installed on your computer, you can directly use PIP install astroid
If pip is not installed, open https://bitbucket.org/logilab/astroid Download well, Enter the command window
CD to the downloaded folder, and then use Python setup. Py install
3. Install iSORT
Python – M PIP install iSORT
If pip is installed on your computer, use PIP install iSORT directly
If pip is not installed, open https://github.com/timothycrosley/isort After downloading, enter the command window
CD to the downloaded folder, Then use Python setup. Py install
4. Install pylint
Python – M PIP install pylint
If pip is installed on your computer, use PIP install iSORT directly
If pip is not installed, open https://pypi.python.org/pypi/pylint After downloading, enter the command window
CD to the downloaded folder, Then use Python setup. Py install
5. In sublime, enter Ctrl + Shift + P, then enter install, then enter pylinter,
enter and wait for the prompt in the lower left corner to complete the installation, so that the above problems will not be prompted in the future

Similar Posts: