How to remove python3.7.2 from /usr/local/bin

1

I have accidentally installed python3.7 in /usr/local/bin instead of /usr/bin/.

This makes scipy not available for some of my scripts.

Is there a way to uninstall python3.7 and reinstall in /usr/bin/

Thanks! SP

user1037239

Posted 2019-05-16T16:16:46.513

Reputation: 11

1How did you install it? Have you looked up how to remove Python and followed any instructions? What have you tried? – music2myear – 2019-05-16T20:38:16.567

How did you install python? Have you tried using a package manager like homebrew? If you don't want to go the package manager route you should be able to just move the file. Check the version by entering into terminal python --version and the location by which python – mainframe – 2019-05-16T17:11:48.223

No answers