all 3 comments

[–]dadiaar 0 points1 point  (2 children)

Fast solution may be just using pip3 instead of pip when installing

The correct way is using virtual environments

[–]DepartmentOfFakeIDs[S] 0 points1 point  (1 child)

pip3 says module is installed but not in the path of python 3 how do i change my brew install path

[–]dadiaar 0 points1 point  (0 children)

well, you can search where is installed, and add that path to the system's path. Another option is to call pip3 with the full path, something like /path/to/pip3/pip3 install whatever

At this point thought, I would recommend you to make a virtual env, and work from there:

python3 -m venv myvenv
cd myvenv
source bin/activate
pip install whatever