What is the difference between these:
sudo python3 -m pip install requests pyarrow
sudo pip3 install requests pyarrow
What is the difference between these:
sudo python3 -m pip install requests pyarrow
sudo pip3 install requests pyarrow
First of all sudo
(short for superuser do) runs the program as an administrator. Second, python3
will either open the live interpreter or a script passed to it as an argument, while pip3
is used to install python packages.
In your given usage, they should do the same thing.