Can I indicate in which directory "site-packages" the MySQL Utilities should be installed?

I have a home Python installation that I use as my main (almost exclusive) Python and you need to install "MySQL Utilities" . But the installer places the packages in my site-packages system directory, and not in Homebrew's.

Is there a way to specify in which directory site-packages MySQL Utilities files should be stored?

0
python mysql homebrew
source share
1 answer

If you install using pip , pip -t /what/ever thepackage will install packages in /what/ever . If you are installing something else, you better indicate that something else ! -)

0
source share

All Articles