# Sublime Text ## Tips and tricks
## Jul 10, 2025
#### [Hobson Lane](#links)
[1](#links)
#### Tangible AI --v-- ## Agenda 1. **[Anaconda](#Anaconda)** 2. [Get serious](#get-serious) 3. [Decision trees](#decision-trees) 4. [Hybrid code networks](#hybrid-code-networks) 5. [State-space models](#state-space-models) 6. [Python tricks](#python-tricks) --- ## 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)