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
Asked
Active
Viewed 1,189 times
1 Answers
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