Can I Specify Which 'site-packages' Directory Mysql Utilities Should Be Installed In?
I have a Homebrew installation of Python that I use as my principal (nearly exclusive) Python and need to install MySQL Utilities. But the installer places the packages in my syste
Solution 1:
If you're installing with pip
, pip -t /what/ever thepackage
will install packages in /what/ever
. If you're installing with something else, you'd better specify what that something else is!-)
Post a Comment for "Can I Specify Which 'site-packages' Directory Mysql Utilities Should Be Installed In?"