Cannot install ggplot with anaconda

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

+5
source share
6 answers

Have you tried looking at www.binstar.org? Type ggplot in the search bar (I already did this, and it appears with different parameters, one of which is the win32 channel. Since I already looked at it, this is what you should enter 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

+7
source

I think ggplot is simply not packaged for Anaconda, as conda search ggplot finds nothing. How easy it is to install via pip - pip install ggplot .

+3
source

conda install -c bokeh ggplot

https://anaconda.org/bokeh/ggplot

You can also do pip install ggplot or sudo -H python2 pip install ggplot

Hope this helps someone though late answer: p

+1
source

As of January 2016, ggplot is now installed by default if you are using the Anaconda distribution, so you can just use install ggplot . New to Python, so this still disables me.

0
source

This worked, but some features were broken:

 conda install -c bokeh ggplot=0.9.4 

Installing from here is what finally got me what I wanted:

 conda install -c conda-forge ggplot 
0
source

I encountered the same problem when installing ggplot. None of the methods worked, in the end I reinstalled the anaconda. Then everything works smoothly.

0
source

Source: https://habr.com/ru/post/1216333/


All Articles