Pandas安装instalsl numpy和scipy,我已经从源安装了

时间:2015-09-21 22:24:05

标签: python numpy pandas scipy ubuntu-14.04

我正在尝试使用

安装python-pandas
myfile = open('myfilename.txt', 'r')
for line in myfile.readlines():
    words = line.split('=')[2].split() # If the program returns wrong results, try changing the index from 2 to 1 or 3. What number is the right one depends on whether there can be any symbols before the first "=".
    genus, species = words[0], words[1]

作为依赖它安装numpy和scipy。因此,当我导入numpy和scipy时,numpy不是开发版本,而是上面命令安装的版本。如何使用

解决它
sudo apt-get install python-pandas

也移除了熊猫。

1 个答案:

答案 0 :(得分:2)

删除ubuntu的numpy,scipy和pandas并尝试使用pip进行安装:

sudo pip install pandas

easy_install

sudo easy_install pandas

将使用你已经建立的numpy和scipy(只要pip cand在$ PYTHONPATH上找到它们)。

PS:您可能需要安装pip。你可以从ubuntu的软件包(可能是python-pip

中完成