Reputation: 127
I have installed the package "vincent" as illustrated below.
However, I can't import it in Jupyter (and I don't understand the explanations elsewhere in Stackoverflow, so I figured I'd ask again.
Upvotes: 1
Views: 228
Reputation: 113
You could install packages on Jupyter using following commands:
import sys
!{sys.executable} -m pip install vincent
Or you could install using following code
%%sh
http_proxy=http://10.245.5.340:8080 //change to your proxy localhost address
export http_proxy
https_proxy=https://10.245.5.340:8080 //change to your proxy localhost address
export https_proxy
pip install vincent
Upvotes: 1
Reputation: 27577
It could mean that you installed vincent
into a python editor that is not jupyter
. Check to see if you have another python editor that has vincent
installed in it.
UPDATE:
Here are the steps:
Launched Anaconda Prompt
Executed this statement: conda install -c conda-forge vincent
Be careful when using the base environment for anything. From the documentation:
Do not install, update, remove, or change dependencies.
This WILL lead to broken environments and inconsistent behavior.
Use at your own risk.
Upvotes: 0