pip – Page 2 – POFTUT

How To Install and Use OpenSSL Library In Python Applications?

OpenSSL is popular security library used by a lot of products, applications, vendors. OpenSSL provides libraries for the most of the programming languages. Python is popular programming language too. We can use OpenSSL library in Python applications. In this tutorial we will develop an example application that uses OpenSSL Python Library and bindings. Install OpenSSL … Read more

How To Install Numpy For Linux?

Python is modern, the interpreted language used in various areas. One area of python is big data and graphics. Python has a lot of 3 party libraries to draw graphics. Today I needed a graphics library named Numpy. Numpy can be installed from different sources. But using pip is one way to install the most … Read more

How to Install Pip in Debian, Ubuntu, Kali, Mint?

Pip is a python package manager. Python packages and libraries can be installed in different ways to the system. We can also use the distribution provided package manager to install Python libraries. Python packages can get from pypi.python.org . How can we install pip in Debian, Ubuntu, Kali, or similar dpkg, apt-based distributions. “Command ‘pip’ … Read more

Pip ffi.h Gcc Error

pip is a tool used to install Python modules from a central python repository. While using pip command there may be some error like ffi.h gcc .This error will look like below. #include <ffi.h>                     ^    compilation terminated.    error: command ‘gcc’ failed with exit status 1 Install libffi-dev This problem is related to the libffi libraries. … Read more