无法使用anaconda安装ggp​​lot

Can't install ggplot with anaconda

(我知道这个问题 Cannot install ggplot with anaconda 但这是针对 Windows 的,我是 运行 Linux OS)

我正在尝试在 python3 (v3.6.0) Anaconda 环境中安装 ggplot 包:

$ conda install ggplot
Fetching package metadata .............


PackageNotFoundError: Package missing in current linux-64 channels: 
  - ggplot

Close matches found; did you mean one of these?

    ggplot: r-ggplot2, r-gplots

如果我使用 conda search 我得到:

$ conda search ggplot 
Fetching package metadata .............
r-ggplot2                    1.0.0                         0  defaults        
                             1.0.0                        0a  defaults        
                             1.0.1                  r3.2.2_0  defaults        
                             1.0.1                  r3.2.0_0  defaults        
                             1.0.1                  r3.2.1_0  defaults        
                             1.0.1                 r3.2.1_0a  defaults        
                             1.0.1                 r3.2.2_0a  defaults        
                             1.0.1                 r3.2.0_0a  defaults        
                             2.1.0                  r3.3.1_0  defaults        
                             2.2.0                  r3.3.1_0  defaults        
                             2.2.0                  r3.3.2_0  defaults

但如果我搜索 https://anaconda.org/search for ggplot I get lots of results

问题:为什么我在使用 conda search 时看不到这些结果? ggplotr-ggplot2(当我搜索 ggplot 时它提供安装的包)有什么区别?

Why am I not seeing those results when using conda search?

搜索的不同之处在于 conda search 仅在您的频道中搜索,anaconda search 或 anaconda.org 上的搜索包括 all(public) 频道。包名前面的名字就是频道,比如xyz/ggplot xyz就是频道。

What is the difference between ggplot and r-ggplot2

这可能是一种命名约定。 anacondaseveral R based packages,他们很可能使用 r- 前缀将它们与更常规的 python 包分开。因此,如果您不打算将它与 "R" 一起使用,您可能应该寻找没有 r-.

的合适候选人