2013-11-15 96 views
2

當我運行:在Amazon EC2 linux服務器上安裝熊貓的步驟是什麼?

python setup.py install 

在Amazon EC2 Linux實例,我得到:

Could not locate executable gfortran 
Could not locate executable f95 
Could not locate executable ifort 
Could not locate executable ifc 
Could not locate executable lf95 
Could not locate executable pgfortran 
Could not locate executable f90 
Could not locate executable f77 
Could not locate executable fort 
Could not locate executable efort 
Could not locate executable efc 
Could not locate executable g77 
Could not locate executable g95 
Could not locate executable pathf95 
don't know how to compile Fortran code on platform 'posix' 

什麼是解決這個問題的方法是什麼?在EC2 linux服務器上安裝大熊貓有沒有其他的,簡單的wat?熊貓的圖像是否比其他圖像更好?

Thx!

+0

我只是想安裝python的蟒蛇分佈。 –

+0

對於那些解決了這個問題的人來說,'pandas'只能用於編程和數據科學。需要幫助的用戶類型不可能通過服務器故障來解決。 –

+0

@KyleKelley我的直覺是,這仍然不是堆棧溢出的主題,但是因爲它只是一種直覺,我不想以某種方式投票。 –

回答

3

極品構建工具

作出肯定安裝系統軟件包GCC,G ++,gfortran,和python-dev的。這是我將使用的設置。首先更新apt-get的,然後再安裝...

$ apt-get update 
$ apt-get install build-essential gfortran gcc g++ python-dev 

通過系統軟件包

根據圖像的安裝,熊貓可能是系統包

$ apt-get install python-pandas 

的一部分,這是一個很值得雖然保證會落後幾個版本。

使用畫中畫,從源頭

內置然而,如果你想要的最新和最好的,從源代碼安裝。這裏有一個小偏方,通過numpy的安裝setuptools的& PIP隨後在和熊貓

# Update your apt-get: 
apt-get update 

# Pre-requisities 
apt-get install build-essential gfortran gcc g++ curl wget python-dev 

# Make sure you have the latest setup tools 
wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python2.7 

# Get pip 
curl --show-error --retry 5 https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python2.7 

pip install numpy pandas 
+1

如果您使用的是centos,請將apt-get換成yum。 – lukewitmer

1

您需要安裝gfortran第一

sudo apt-get install gfortran 
相關問題