1

I am trying to install pip3. I ran brew install python3 which installed python3 correctly. I also ran brew post install python3 as I found on this site.

Now, I enter which pip3 and get /usr/local/bin/pip3

And when I run pip3 I get this message: -bash: /anaconda3/bin/pip3: No such file or directory

How do I completely remove anaconda from my computer AND install pip3 from here? I deleted the anaconda application, removed the PATH from nano ~/.bash_profile. and emptied the trash

EDIT: FIXED USING hash -r

2 Answers2

1

Waiting on my rep to hit 50.

Maybe an answer:

what is the output of? Checking to see if its a link

ls -la /usr/local/bin/pip3


Also look at your path

export | grep PATH
1

are you running pip install command in conda environment

If you are running it in conda environment First deactivate it

Use

source deactivate
itsvinayak
  • 140
  • 1
  • 16
  • How do I tell which environment I am running It in? –  Jun 16 '19 at 01:53
  • Read this for info on conda environment https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html – itsvinayak Jun 16 '19 at 02:05