# Sublime Text ## Tips and tricks
## Jul 10, 2025
#### [Hobson Lane](#links)
[1](#links)
#### Tangible AI --v-- ## Agenda 1. **[Anaconda](#Anaconda)** --- ## Anaconda The Anaconda plugin will turn Sublime Text into an IDE #### Each time you save: - Flag errors (like unused imports) - Automatically fix PEP8 errors --v-- ## Install with "Package Control" ```text ctrl-shift-P: -> Install Package -> Anaconda ``` --v-- ## [Custom settings](/2025-07-10/Anaconda.sublime-settings)
#### [_`~/.config/sublime-text/Packages/User/Anaconda.sublime-settings`_](/2025-07-10/Anaconda.sublime-settings) ```json { "python_interpreter": "python3.8", # IMPORTANT!!! "anaconda_linter_show_errors_on_save": true, "pep8_ignore": ["E309", "W503"], "pep8_max_line_length": 150, } ```
```bash sudo apt install python3.8 python3.8-dev ``` --- ### Links 1. [NLPiA.org](nlpia.org)