Anaconda vs. miniconda

前端 未结 8 677
逝去的感伤
逝去的感伤 2020-11-27 09:57

In the Anaconda repository, there are two types of installers:

\"Anaconda installers\" and \"Miniconda installers\".

What

8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-27 10:27

    Anaconda is a very large installation ~ 2 GB and is most useful for those users who are not familiar with installing modules or packages with other package managers.

    Anaconda seems to be promoting itself as the official package manager of Jupyter. It's not. Anaconda bundles Jupyter, R, python, and many packages with its installation.

    Anaconda is not necessary for installing Jupyter Lab or the R kernel. There is plenty of information available elsewhere for installing Jupyter Lab or Notebooks. There is also plenty of information elsewhere for installing R studio. The following shows how to install the R kernel directly from R Studio:

    To install the R kernel, without Anaconda, start R Studio. In the R terminal window enter these three commands:

    install.packages("devtools")
    devtools::install_github("IRkernel/IRkernel")
    IRkernel::installspec()
    

    Done. The next time Jupyter is opened, the R kernel will be available and available.

提交回复
热议问题