A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/installation-guide/how-to-install-scipy-in-python-on-windows/ below:

How to Install Scipy in Python on Windows?

How to Install Scipy in Python on Windows?

Last Updated : 03 Jul, 2025

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 pip

3. Install SciPy using pip:

pip install scipy

Snapshot of Terminal showing Successful installation of SciPy for pip user Method 2: Using conda (Recommended if using Anaconda or Miniconda)

1. Open Anaconda Prompt

2. Create a new environment (optional):

conda create -n myenv python=3.11
conda activate myenv

3. Install SciPy using conda:

conda install scipy

Snapshot of Terminal showing Installation of Scipy for conda user Verifying Scipy Module Installation

To 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:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4