0

Can anyone tell me what the difference between installing a python module using pip3 install "something" and sudo apt install "something"? Eg: sudo apt install python3-sklearn and pip3 install scipy --user

1 Answers1

1

The apt install downloads and installs applications for the operating system.

pip3 on the other hand installs a module for python, and not the operating system

Paddy
  • 111