
#Sublime text run python install
We also want to explicitly set the path to the correct Python version, especially on Windows, as installing NodeJS may (still, in December 2019, ugh) install Python 2.7.

Go to Preferences > Package Settings > Anaconda > Settings-Syntax Specific-User. I find this too short for modern coding, and prefer Black's default. PEP-8, Python's style guide, recommends a maximum line length of 79 characters.If you'd like autocomplete for Django, you can use Package Control: Install Package to install Djaneiro as well.If you have ugly code, simply hit Control + Alt + B to format it beautifully. Black is an opinionated Python syntax formatted. Then, search for subblack using Package Control: Install Package, and install it just like you installed Anaconda. Install black on your current system with pip install black.I have never seen a syntax highlighter as good the on Anaconda provides.
#Sublime text run python code
It will make your code much cleaner, readable, and maintainable going forward. Anaconda gives you a wonderful Python environment: automagically checking for unused package imports and variables, making sure you follow PEP-8 coding style, and common syntax problems.
