I am trying to install some packages using pip and python3. I am using MacOS, so by default when I run pip, it uses my version of Python 2.
I have been able to install a package in python 3 by using:
$ pip3 install package_name
However, I am able to do the same by (at least it seems):
$ python3 -m pip install package_name
I wonder whether or not pip3
and python3 -m pip
have the same effect.