Hacker News new | ask | show | jobs
by emmanueloga_ 736 days ago
I think it is "better" to go with the flow. I can't see TS competing for the data analysis niche any time soon!

Maybe try Pixi? [1] Python programming enjoyability really increased for me after using Pixi for dependencies, VSCode+Pylance [2] for editing, and Ruff [3] for formatting.

Pixi can install both python and dependencies _per project_. Then, I add this to .vscode/settings.json:

    {
      "python.analysis.typeCheckingMode": "strict", 
      "python.defaultInterpreterPath": ".pixi/envs/default/bin/python3"
    }
and I'm all set!

--

1: https://pixi.sh

2: https://github.com/microsoft/pylance-release#readme

3: https://docs.astral.sh/ruff/