# Python
## Install
### Install with [[Homebrew]]
First check whether python is already installed, ships with [[macOS]]:
```bash
which python3
which pip3
```
If no Python, install with [[Homebrew]]:
```bash
brew install python
```
Install python linters
```bash
pip install pep8
pip install pyflakes
pip install flake8
```
## Notes
### Shebang for use as script
```python
#!/usr/bin/env python3
```