DEV Community

Discussion on: What do you use for Python development?

Collapse
 
rhymes profile image
rhymes

linter: flake8 plus various plugins
formatter: black
IDE: sublime text or visual studio code
type checker: none, but you can take a look at mypy
package manager: I used to use pipenv but i've switch to poetry

As for the interpreter goes I use standard Python, the version in C you can find at python.org/

I install it through pyenv so I can easily switch between different versions in different projects