How to make Anaconda python my default python provider?

I am using zsh and i want to add anaconda python to be my default python

❯ which python
/usr/bin/python

add this to your ~/.profile file:

export PATH="/home/username/anaconda3/bin:$PATH"

you need to refresh your env variables after this by opening a new terminal or using source ~/.profile

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.