How to install SciPy in Python 3.10 in less than 4 mins - step by step guide

preview_player
Показать описание
By watching this video, you will learn to install the SciPy library in Python 3.10 in less than 4 mins on MacOs and Windows.

This video will teach how to create a python project folder first then a python virtual environment within it, activate the python virtual environment, and then install the SciPy library within it.

[Windows]
(create virtual environment)
virtualenv myenv

(activate virtual environment)
myenv\Scripts\activate

Finally, we will programmatically test the successful installation of the SciPy library in the python project as well by printing its version.

You can extrapolate these techniques to install other packages in your python project by creating a virtual environment too.

SciPy library uses Numpy library underneath hence you will notice that Numpy gets downloaded along with SciPy.

If you don't have the latest python installed on your Mac then you can watch this video -

How to install Pycharm on MacOS Catalina or Big Sur

If you haven't subscribed on my channel yet then do hit the subscribe button as well as the bell icon as that way you won't miss out on these instructional videos I create for you.

Also watch,
How to install flask on MacOS

How to install pip on macOS

How to install Pycharm on MacOS Catalina or Big Sur

Watch more videos from Joey'sTech on dynamic programming
Arithmetic Slices

Is Subsequence

Best Time to buy and sell stock

Stone Game

Make sure you subscribe to my channel Joey'sTech so that you don't miss out on any instructional videos I make.
Рекомендации по теме
Комментарии
Автор

i get the below error. how do i resolve?

pip install scipy --no-cache-dir

Collecting scipy
Downloading scipy-1.10.1.tar.gz (42.4 MB)
42.4/42.4 MB 4.3 MB/s eta 0:00:00
Installing build dependencies ... done
Getting requirements to build wheel ... done
Installing backend dependencies ... done
Preparing metadata (pyproject.toml) ... error
error: subprocess-exited-with-error

× Preparing metadata (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> [40 lines of output]

sidnet