Downloading Plotly and Datalink

I have had problems trying to download Plotly and Datalink into a Juniper notebook for an exercise. Whenever I try and use PIP-install for these commands, I get the following.

"C:\Users\Robin>pip install plotly
Collecting plotly
Using cached
Collecting six (from plotly)
Using cached
Collecting retrying>=1.3.3 (from plotly)
Using cached
Installing collected packages: six, retrying, plotly
Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: ‘c:\program files (x86)\python37-32\Lib\site-packages\six.py’
Consider using the --user option or check the permissions.

You are using pip version 18.1, however version 19.2.3 is available.
You should consider upgrading via the ‘python -m pip install --upgrade pip’ command.

C:\Users\Robin>conda install plotly
‘conda’ is not recognized as an internal or external command,
operable program or batch file.

C:\Users\Robin>"

When I use them in Jupyter, even after I download the relevant GitHub to the folder, I get stuff like this:
"from pandas_datareader import data, wb
3 import pandas as pd
4 import numpy as np
5 import datetime

ModuleNotFoundError: No module named ‘pandas_datareader’"

and

"---------------------------------------------------------------------------

ModuleNotFoundError: No module named 'plotly"

I would like to know what I am doing wrong here and how to solve it.

Hi @LeoLH,

The reason you cannot download the package is written in the error log:

If you don’t have the necessary privileges to install packages diretly in Program files you should maybe consider to install python in your home directory where you should have write access. (for example with the Anaconda package manager)

Alex-