I have few conda environments that I use in different projects, say:
- ml37 (for machine learning)
- etl37 (for data pipelines)
I have local projects organized in their own directories:
- apps/some_app
- apps/other_app
- ...
Each time I cd to a specific project, I already know which env I would like to use. So I end up doing conda activate [some env] each time I change directories. I feel like there must be a better way.
What would be a clean way to automatize this?
Or is my use of conda environments wrong?