How to Install Pip on Arch Linux

how to install latest version of python and pip in arch linux?

Pip should be installed normally, and if not, there should be a package for pip, but if you cannot install it for whatever reason, installing pip can be done via the ensurepip module:

python -m ensurepip

Reference the documentation for more information.

python - pip install mysqlclient on Arch Linux

In the end the solution was to install gcc and mysql

pacman -S gcc

pacman -S mysql

and just later run

pip install mysqlclient

How to install python2.7 specific packages on Arch Linux?

In Arch Linux the default Python version is 3, so all python-* packages (including python itself) are for Python3. Fortunately Python2 is still fully supported, they are just prefixed with python2-* instead. So to install numpy you would do pacman -S python2-numpy.



Related Topics



Leave a reply



Submit