水蟒和Python有什么区别?

2024-04-25 20:20:25 发布

您现在位置:Python中文网/ 问答频道 /正文

我现在有Pycharm 5.0.4,我的老师要我换成水蟒。

Do different GUIs actually affect your programming?

What are libraries and what causes one GUI to be more advanced than another?

How does the Kernel change the way the user interfaces with the code?


我是python的初学者,我不确定Pycharm是否最适合我。。。对于初学者来说,Pycharm仍然是最好的吗?


Tags: thelibrariesyour老师dowhatarepycharm
2条回答

PyCharm是一个IDE,anaconda是一组库(一个发行版)。好消息是pyCharm支持anoconda。下面是我从Wayback机器中提取的一些文档(出于某种原因,Anaconda删除了他们关于与Pycharm集成的文档)。如果其中任何部分已经过时,请让我知道,以便我可以更新它。


使用PyCharm的首选项将其设置为使用水蟒。有多种方法可以访问“首选项”窗口,包括在PyCharm文件菜单中选择首选项或单击顶部图标栏中的首选项图标。

enter image description hereenter image description here

打开“首选项”窗口后,导航到“项目解释器”->;“Python解释器”。单击+号将Anaconda添加到Python解释器列表中。

enter image description here

如果没有列出Anaconda Python路径,请选择Local。。。并导航到安装Anaconda Python的目录。通常这个目录是~/anaconda/bin/python

添加Anaconda之后,您将看到它显示在Python解释器列表中,以及随它一起安装的其他包。单击“确定”。PyCharm IDE现在设置为使用水蟒。

enter image description here 更多信息:Configuring available packagesconfiguring Anaconda environment


另请参见Using (Ana)conda within PyCharm

他们无法相比。实际上,Anaconda不是IDE,Anaconda是Python发行版,根据它们的website

Anaconda is a completely free Python distribution (including for commercial use and redistribution). It includes more than 400 of the most popular Python packages for science, math, engineering, and data analysis. See the packages included with Anaconda and the Anaconda changelog.

事实上,你甚至可以用水蟒和小妖精,according to the PyCharm website

PyCharm integrates with IPython Notebook, has an interactive Python console, and supports Anaconda as well as multiple scientific packages including Matplotlib and NumPy.

相关问题 更多 >