Open In App

How to Install Python sympy in Windows?

Sympy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python.  SymPy only depends on mpmath, a pure Python library for arbitrary floating-point arithmetic, making it easy to use. 

In this article, we will look into various methods of installing Sympy on Windows.



Pre-requisites:

The only thing that you need for installing Sympy module on Windows are:

Installing Sympy on Windows:

For Conda Users:

If you want the installation to be done through conda, you can use the below command:



conda install sympy

Type y for yes when prompted.

You will get a similar message once the installation is complete

Make sure you follow the best practices for installation using conda as:

conda create -n my-env
conda activate my-env

Note: If your preferred method of installation is conda-forge, use the below command:

conda config --env --add channels conda-forge

For PIP Users:

Users who prefer to use pip can use the below command to install Sympy package on Windows:

pip install sympy

You will get a similar message once the installation is complete:

Verifying Sympy Module Installation:

To verify if Sympy has been successfully installed in your system run the below code in a python IDE of your choice:




import sympy
sympy.__version__

If successfully installed you will get the following output.

Article Tags :