如何检查我是否在我的机器上安装IPython的什么顺序来安装这些库?(How to check wh

2019-06-28 04:11发布

我需要使用Python的机器学习过程中,我还需要安装一些外部库。 我有点困惑,正确的顺序是什么安装的一切,因为我听说过的路径可以搞的一团糟,如果操作不当。

以下是我需要:

  • Python版本2.7
  • IPython的
  • 可这个包通过enthought内的图书馆

所以,第一步是看我是否有蟒蛇装是:我有这个版本

 AM@~ >python
 Python 2.7.2 (default, Jun 20 2012, 16:23:33) 
 [GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
 Type "help", "copyright", "credits" or "license" for more information.

接下来的IPython

 How do I check if I have IPython?
 Also whats the ideal procedure to install it? Any caveats? Any special path settings?     

 Can I use brew to install it?

Enthought库

   Do I have to install these libraries in any particular order? before IPython? after IPython? 
   Do I have to set any specific paths?

我试着去避免安装和制造的错误,然后重新安装等。

因此,任何帮助,将不胜感激。 进出口运行的Mac OS X 10.7(山狮)。

谢谢

Answer 1:

它是如此简单的让所有的IPython,Matplotlib,SciPy的等等。现在,你已经安装了Python 2.7。 如果这是一个过程,我认为你有这个机构.edu的电子邮件地址? 如果是的话只是去这里: http://www.enthought.com/products/edudownload.php

提交您的信息。 下载并安装它像任何其他程序。 然后,您将能够调用ipython从终端。 或者使用matplotlib调用ipython --pylab从终端。

绝对不要去安装一个图书馆接一个,除非你非常熟悉如何工作的。



Answer 2:

你可以简单地检查版本,因为我们与其他软件包做检查是否正确或没有安装软件包。

输入您的终端。

ipython --version

如果正确安装IPython中它会打印版本。



文章来源: How to check whether I have IPython installed on my machine and what sequence to install these libraries?