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 Python-sh 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-sh on Linux? In python, the sh package is a full-fledged sub-process replacement for Python 2.6 - 3.8, PyPy, and PyPy3 that allows you to call any program as if it were a function. So, in this article, we will be installing the sh package in Python on Linux operating system. Installing Sh package on Linux using 1 min read How to Install Python docutils on Linux? Docutils is an open-source text processing system. It is written in Python language. It is used to process simple text or plaintext documents into some useful formats like LaTex, HTML, OpenDocument, XML, etc. It is easy to use and easy to read. It is available for operating systems like, Windows, ma 2 min read How to Install OpenCV for Python in Linux? Prerequisite: Python Language Introduction OpenCV is the huge open-source library for computer vision, machine learning, and image processing and now it plays a major role in real-time operation which is very important in todayâs systems. By using it, one can process images and videos to identify ob 2 min read How to Install OpenCV for Python in Linux? Prerequisite: Python Language Introduction OpenCV is the huge open-source library for computer vision, machine learning, and image processing and now it plays a major role in real-time operation which is very important in todayâs systems. By using it, one can process images and videos to identify ob 2 min read Like