How to make Pip installer work inside of Blender Python

In case anyone wants to run Pip install for things like Scipy in their blender install, I made a video to show how to do it.
Or you can follow the steps:

Get the python version your blender uses,
install that python
copy everything from the “site-packages” folder in your python install to your blender python “site-packages” folder
Restart blender

in the python or text editor console:
import pip
pip.main([‘install’,‘scipy’])

(you might have to delete an existing numpy folder from your site packages before installing numpy. Don’t worry it will reinstall)

Video!