anaconda安装指南_安装Anaconda的快速指南

anaconda安装指南

This guide will help you get Anaconda installed on your computer in the ballpark of 15-30 minutes. Anaconda is a sort of collection of programming goodies and comes with Python (programming language), Spyder (an IDE, or the place where you’ll do your actual coding), conda (a package manager that makes it really easy to install, update, and otherwise manage your packages) and a few other things you may find use for later on down the road. The process is demonstrated in Windows, though Mac and Linux users should find it similarly straightforward.

本指南将帮助您在15到30分钟内将Anaconda安装到计算机上。 Anaconda是一种编程工具的集合,并带有Python(编程语言),Spyder( IDE或您将要进行实际编码的地方),conda(使其非常容易安装,更新的程序包管理器) ,以及管理您的包裹)和一些其他的东西,这些东西可能会在以后使用。 Windows演示了该过程,尽管Mac和Linux用户应该发现它也同样简单明了。

And if you’d rather not spend the time or disk space on Anaconda, you might try out Miniconda, which comes with just Python and conda. But personally I prefer to just install something once knowing it has pretty much everything I might need, so unless you have an old or weak computer I’d recommend Anaconda (it’s no problem for my run-of-the-mill 3 year-old laptop).

而且,如果您不想在Anaconda上花费时间或磁盘空间,可以尝试使用Miniconda ,它仅包含Python和conda。 但就我个人而言,我宁愿在知道某个东西已经具备了我可能需要的所有东西之后才安装它,因此,除非您的计算机较旧或性能较弱,否则我建议您使用Anaconda(对于我3岁的普通人来说这没问题笔记本电脑)。

To install Anaconda, go to www.continuum.io/downloads.

要安装Anaconda,请访问www.continuum.io/downloads

Scroll down until you see this table.

向下滚动,直到看到此表。

anaconda安装指南_安装Anaconda的快速指南

If you have a 32-bit system, select the Python 3.5 32-bit installer, and likewise, if you have a 64-bit system, select the Python 3.x 64-bit installer.

如果您具有32位系统,请选择Python 3.5 32位安装程序,同样,如果您具有64位系统,请选择Python 3.x 64位安装程序。

If you aren’t sure whether your system is 32-bit or 64-bit, navigate through “Control Panel -> System and Security -> System” to arrive at this page:

如果不确定系统是32位还是64位,请浏览“控制面板->系统和安全性->系统”以到达此页面:

anaconda安装指南_安装Anaconda的快速指南

As you can see, I have a 64-bit system.

如您所见,我有一个64位系统。

After clicking the appropriate installer, you will be prompted to save the installation file.

单击适当的安装程序后,将提示您保存安装文件。

anaconda安装指南_安装Anaconda的快速指南

Select “Save File”.

选择“保存文件”。

Navigate to your Downloads folder.

导航到“下载”文件夹。

anaconda安装指南_安装Anaconda的快速指南

Double click on the installation file.

双击安装文件。

anaconda安装指南_安装Anaconda的快速指南

Select “Run”.

选择“运行”。

anaconda安装指南_安装Anaconda的快速指南

Click “Next”.

点击下一步”。

anaconda安装指南_安装Anaconda的快速指南

Decide whether you agree or not to sell your soul and first-born child in exchange for the awesome power of Anaconda.

决定是否同意出售灵魂和长子以换取Anaconda的强大功能。

anaconda安装指南_安装Anaconda的快速指南

Most likely you’ll want to install it for “Just Me” so select that option and click “Next >”.

您很可能希望将其安装为“ Just Me”,因此选择该选项并单击“ Next>”。

anaconda安装指南_安装Anaconda的快速指南

The default folder should be fine, go ahead and click “Next >”.

默认文件夹应该没问题,继续,然后单击“下一步>”。

anaconda安装指南_安装Anaconda的快速指南

I’d recommend having both these boxes checked, as they’ll help things run a little more smoothly down the road. Select “Install”.

我建议同时选中这两个框,因为它们将使事情在运行过程中更加顺畅。 选择“安装”。

The installation will likely take around 10-20 minutes. Once the installation completes, click “Next >” and you should see this page.

安装大概需要10到20分钟。 安装完成后,单击“下一步>”,您应该会看到此页面。

anaconda安装指南_安装Anaconda的快速指南

Click “Finish” and you are done. You can also delete the .exe file in your Downloads folder.

单击“完成”,您就完成了。 您也可以删除“下载”文件夹中的.exe文件。

To start playing around with Python, find and run the “Spyder” program that came included with Anaconda. (In fact, I’d make a shortcut for Spyder since it’ll be your go-to development environment). Once Spyder loads, you should see something that looks like this:

要开始使用Python,请查找并运行Anaconda随附的“ Spyder”程序。 (实际上,我会为Spyder设置一个快捷方式,因为它将成为您的首选开发环境)。 加载Spyder之后,您应该会看到类似以下内容的内容:

翻译自: https://www.pybloggers.com/2016/09/quick-guide-to-installing-anaconda/

anaconda安装指南