I\'ve recently deleted Anaconda and reinstalled python with brew. I\'ve installed everything according to these instructions.
Python works great, and all packages I\
The answer given by @evadeflow does the job, but there are several other packages installed with pip and it will be very uncomfortable to keep adding alias
for each of them.
A rather elegant way would be to add the path where these packages are installed to the $PATH
variable. In my case adding the following line in ~/.bashrc did the job:
export PATH=$PATH:/home/my_user_name/.local/bin
Addl refs: https://askubuntu.com/q/551990/632996; https://askubuntu.com/q/556090