How to Install Scipy in Python on Windows? Last Updated : 03 Jul, 2025 Comments Improve Suggest changes Like Article Like Report SciPy is a Python library used for scientific and technical computing. It builds on NumPy and provides modules for optimization, integration, interpolation, eigenvalue problems, and more. Before using SciPy in your Python project on Windows, you need to install it properly.Depending on your environment, you can install SciPy using either pip (Python's package installer) or conda (used with Anaconda/Miniconda). Below are simple step-by-step instructions for both methods.Method 1: Using pip (Recommended for standard Python installations)1. Open Command Prompt(CMD)2. Upgrade pip (optional but recommended):python -m pip install --upgrade pip3. Install SciPy using pip:pip install scipySnapshot of Terminal showing Successful installation of SciPy for pip userMethod 2: Using conda (Recommended if using Anaconda or Miniconda)1. Open Anaconda Prompt2. Create a new environment (optional):conda create -n myenv python=3.11conda activate myenv3. Install SciPy using conda:conda install scipySnapshot of Terminal showing Installation of Scipy for conda userVerifying Scipy Module InstallationTo verify if Scipy has been successfully installed in your system run the below code in python IDE: Python import scipy scipy.__version__ If successfully installed you will get the following output: Comment More infoAdvertise with us Next Article How to Install Python sympy in Windows? D ddeevviissaavviittaa Follow Improve Article Tags : How To Installation Guide Blogathon Blogathon-2021 Python-scipy how-to-install +2 More Similar Reads How to Install Python Scrapy on Windows? Scrapy is a web scraping library that is used to scrape, parse and collect web data. Now once our spider has scrapped the data then it decides whether to: Keep the data.Drop the data or items.stop and store the processed data items. In this article, we will look into the process of installing the Sc 2 min read 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 libr 2 min read How to install Python on Windows? Python is a high-level programming language that has become increasingly popular due to its simplicity, versatility, and extensive range of applications. The process of How to install Python in Windows, operating system is relatively easy and involves a few uncomplicated steps. This article aims to 5 min read How to Install Eli5 in Python on Windows? Eli5 is an open-source and cross-platform Python library available for various operating systems including Windows, Linux, and macOS, written to easily and quickly debug machine learning classifier models to explain their predictions. It provides support for machine learning frameworks and packages 2 min read How to Install Gekko In Python on Windows? In this article, we will learn how to install Gekko in Python on Windows . GEKKO is a Python package for machine learning and optimization of mixed-integer and differential-algebraic equations. It is coupled with large-scale solvers for linear, quadratic, nonlinear, and mixed-integer programming (LP 2 min read How to Install PyGTK in Python on Windows? PyGTK is a Python package or module that enables developers to work with GTK+ GUI Toolkit. This is how WikiBooks describes GTK+: "GTK+ is a highly usable, feature rich toolkit for creating graphical user interfaces which boasts cross platform compatibility and an easy to use API." And this is how gt 5 min read Like