user10601897
user10601897

Reputation:

Pip3 NOT installing with python3, unusual case?

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

Upvotes: 1

Views: 1667

Answers (2)

Travis Pickle
Travis Pickle

Reputation: 26

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

Upvotes: 1

itsvinayak
itsvinayak

Reputation: 138

are you running pip install command in conda environment

If you are running it in conda environment First deactivate it

Use

source deactivate

Upvotes: 1

Related Questions