Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot install ggplot with anaconda

I want to be able to use geom_smooth in ggplot. However, when I typed conda install ggplot, I get the error no packages found in current win-32 channels matching ggplot. Anyone know what is going on?

like image 589
user4352158 Avatar asked Mar 28 '15 02:03

user4352158


1 Answers

Have you tried looking at www.binstar.org? Type in ggplot in the search bar (I have already done so and it pops up with different options, one of which is a win32 channel. Since I have already looked at it this is what you should type into the command shell:

    conda install -c https://conda.binstar.org/bokeh ggplot

I have not tested since I have win64 but this should work

UPDATE: The link above is now broken try this instead

    conda install -c conda-forge ggplot 
like image 181
jfish003 Avatar answered Oct 06 '22 02:10

jfish003