我正在尝试使用
安装python-pandasmyfile = 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
也移除了熊猫。
答案 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
)