2012-09-11 55 views
2

我需要使用python進行機器學習課程,我還需要安裝一些外部庫。我對於安裝所有東西的正確順序有點困惑,因爲我聽說如果做得不正確,路徑會變得混亂。如何檢查我的機器上是否安裝了IPython以及安裝這些庫的順序是什麼?

以下是我需要:

  • Python版本2.7
  • IPython的
  • 通過enthought可用這個包內的庫

所以第一步是看我是否有蟒蛇安裝 是:我有這個版本

[email protected]~ >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(Mountain Lion)。

感謝

回答

1

它是如此簡單的讓所有的IPython,Matplotlib,SciPy的等等。現在,你已經安裝了Python 2.7。如果這是一門課程,我假設你有這個機構的.edu電子郵件地址?如果是這樣,只是去這裏:http://www.enthought.com/products/edudownload.php

提交您的信息。像其他程序一樣下載並安裝它。然後,您將能夠從終端呼叫ipython。或者從終端使用matplotlib調用ipython --pylab

絕對不要一個接一個地安裝這些庫,除非您非常熟悉它是如何工作的。

+0

我發現這一切都是通過將所有庫一一安裝(除了Matplotlib永遠不會出於某種原因),然後我升級到Mountain Lion,我的所有庫都不見了;所以我去尋找一個更簡單的方法來做到這一點。 – chimpsarehungry

1

您可以簡單地檢查版本,就像我們用其他軟件包一樣檢查軟件包是否安裝正確。

鍵入您的終端。

ipython --version

是否正確安裝IPython中它會打印版本。

相關問題