Skip to content Skip to sidebar Skip to footer

Why Does Brew Installed Python Not See The Pip Installed Modules?

Both pandas and pandasql were installed via pip and are visible to the system/macos version of python. They are not visible to the brew installed python: they result in ImportErro

Solution 1:

Assuming brew at least installed Python correctly, a workaround to ensure its pip module is used is to explicitly use it like so

python -m pip install 

If you want, you can alias pip-inst to redirect to that, so it's less typing


Post a Comment for "Why Does Brew Installed Python Not See The Pip Installed Modules?"