File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ # General Guide to Installing Python Libraries on Major Linux Distributions Using * pip*
2+ ---
3+ For installing * pip* on ** Arch** , use the following command:
4+ ```
5+ sudo pacman -S python-pip
6+ ```
7+ For installing * pip* on ** Debian** and ** Ubuntu** , use the following command:
8+ ```
9+ sudo apt install python3-pip
10+ ```
11+ ---
12+ ** Arch Linux - Debian - Ubuntu**
13+
14+ After installing * pip* for any of these distributions or their derivatives, you can install any library using the following command:
15+ ```
16+ pip install libraryName
17+ ```
18+ If this command doesn't work, you may need to specify the pip version to use, for example:
19+ ```
20+ pip3 install libraryName
21+ ```
22+ To uninstall a library, use the command:
23+ ```
24+ pip uninstall libraryName
25+ ```
26+ ---
27+ In case of any issues, you can search the internet for your specific problem and distribution to find a resolution.
28+
129# Guida generale all'installazione delle librerie python nelle principali distro linux utilizzando * pip*
230---
331Per l'installazione di * pip* su ** Arch** il comando sarà il seguente:
You can’t perform that action at this time.
0 commit comments