How to Install Python py-asn module on Linux? Last Updated : 25 Apr, 2022 Comments Improve Suggest changes Like Article Like Report Py-asn is a Python library that is considered as the extension library which activates very fast Internet Protocol addresses to Autonomous System Number lookups. We can also perform current state and historical state lookups with the help of this package. Input given to this package is MRT/RIB BGP archive. So, in this article, we will be installing the Py-asn package in the Python3 environment on Linux Operating System. Installing the Py-asn package on Linux using PIPRequirements: Python3 Python3-pipTo install the Py-asn package in Linux follow the following steps: Step 1: Firstly, we will install the current version of Python3 using the following command. sudo apt-get install python3 Step 2: Now, we will install the pip package manager, which is responsible for installing the external packages. Use the below command to install the pip manager sudo apt install python3-pip Step 3: Now using the PIP manager we are going to install the Py-asn package. So for the installation run the following command on the terminal. sudo pip3 install pyasn Verifying the installation of the Py-asn package After installing the package, the next important step is to check the installation of the Py-asn package is successful or not. So here, we are simply getting the information of the installed package (Py-asn) by executing the below command on the terminal itself. python3 -m pip show pyasn The below output will be displayed after the successful installation of the Py-asn package on your Linux machine. Comment More infoAdvertise with us Next Article How to Install Python py-asn module on Linux? A abhishekgandal324 Follow Improve Article Tags : How To Installation Guide how-to-install Similar Reads How to Install Python py-asn module on MacOS? Py-asn is a Python module called an extension module. It provides/enables fast IP addresses for autonomous system number lookup. It can search current and historical states using included packages. Inputs can be archived as MRT/RIB BGP. The module is written in C and Python and can be compiled acros 1 min read How to Install Python Six Module on Linux? Six is a Python library that is used to wrap the differences between Python 2 and Python 3 for those systems that work on both Python 2 and Python 3. It is compatible with both Python 2 and Python 3 and can only contain one Python file which makes it easier to add to your projects. In this, article, 2 min read How to Install Python-Pymediainfo Module on Linux? Pymediainfo is a Python package that is used to wrap around the MediaInfo library. It works on various operating systems like Windows, Linux, and macOS. Along with this, it has support for various versions of Python like Python3.6, 3.7, 3.8, etc. In this article, we will look into the process of ins 2 min read How to Install Python py-asn module on Windows? Py-asn is a Python module that is said to be an extension module. It provides\Enables a fast IP address to Autonomous System Numbers Lookups. It can perform both Current state and Historical state lookups with help from its contained packages. Input can be given as MRT/RIB BGP archive. The module is 2 min read How to Install Python-logging module on Linux? A programmer's backpack should include a logging library. It can aid in the development of a better knowledge of a program's flow and the discovery of scenarios that you may not have considered when designing. Because most third-party Python libraries employ logging, you may combine your log message 2 min read Like