I am using python installed with Homebrew. It used to be that python brewing python placed modules in /usr/local/share/python , but this one was changed in later versions of Homebrew, so pip should put them in /usr/local/bin . But mine keeps them in /usr/local/share/python .
I updated Homebrew, uninstalled python, reinstalled it and try to install virtualenv using pip, but it continues to receive /usr/local/share/python . When I try to use it, I get:
$ virtualenv -bash: virtualenv: command not found
How do I get him to put things there, as it should be now?
It works for me on one machine, but not on the other, and both use the same $PATH , etc., so I'm at a dead end.
source share