How to Install Astropy Python Library on Linux? Last Updated : 29 Oct, 2022 Comments Improve Suggest changes Like Article Like Report Astropy is an open-source library written purely in Python, specifically designed for use in astronomy and astrophysics. Anyone can develop astronomy software with Astropy Astronomy Tools. Astropy library is a cross-platform library for various operating systems such as Windows, Linux, and macOS. In this article, we will see an easy way to install the Astropy module on Linux. Pre Requisites Some prerequisites that must be fulfilled before installing the Astropy module on Linux: PythonPIP or Conda (Depending upon user preference)Installing Astropy on LinuxMethod 1: Installation Using PIP Step 1: Users who choose pip to install the Astropy module on Linux can enter the following command in the terminal to install. pip install astropy A similar message is received once the installation is completed. Step 2: After step 1, it is time to check if Astropy has been successfully installed on our system. To verify, run the following command in a terminal. pip show astropy The following output is obtained. Method 2: Installation Using Conda Step 1: As above, users who choose Conda to install the Astropy module on Linux can write the following command in the terminal to install. conda install astropy Type y for yes and press Enter when prompted by the terminal. Once the installation is complete, you will receive a similar message. Installation of Astropy using Conda Step 2: Now to verify that Astropy was successfully installed using conda on the system, run the following command in the terminal: conda list astropy The following output is obtained. Comment More infoAdvertise with us Next Article How to Install Astropy Python Library on Linux? I ishukatiyar16 Follow Improve Article Tags : How To Installation Guide how-to-install Similar Reads How to Install Python-MIDI Library on Linux? The MIDI library in Python is used to manipulate MIDI data. This library or package is cross-platformed as it can work with various operating systems like Windows, Linux, macOS. So, in this article, we will be installing the MIDI package in Python3 on Linux operating system. Features MIDI is a High- 2 min read How to Install Python-jabberpy on Linux? Python is a high-level, interpreted programming language that is widely used for web development, machine learning, and scientific computing. Jabberpy, on the other hand, is a Python library that allows developers to create XMPP clients, which are used for instant messaging and real-time communicati 3 min read How to Install Python on Linux This guide explains how to install Python on Linux machines. Python has become an essential programming language for developers, data scientists, and system administrators. It's used for various applications, including web development, data science, automation, and machine learning.This comprehensiv 15+ min read How to Install python-dateutil on Linux? The dateutil module provides many options to the standard datetime module, available in Python2 and Python3. Or we can say that it gives extensions to the DateTime module in Python. It provides computing of relative deltas like next month, next year, last week, etc. Its time zone information is base 1 min read How to Install Fabric in Python on Linux? Fabric is a Python library. This library is used to perform Linux shell commands remotely over SSH and yield handy Python objects in return. Or we can say that it is a high-level Python library and a command-line tool that uses SSH for application deployment or for administration tasks. It also perf 2 min read Like