Python pd.read_剪贴板()分段故障

Python pd.read_剪贴板()分段故障,python,clipboard,pandas,Python,Clipboard,Pandas,我似乎无法使用read_剪贴板()。我试着复制我的一些数据,文档中的示例数据,最后只复制数字1。如你所见: In [1]: %paste 1 ## -- End pasted text -- Out[1]: 1 In [2]: pd.read_clipboard() Segmentation fault (core dumped) 我做错了什么?还有其他人使用这个有困难吗 我使用IPython 0.12.1和pandas的最新开发版本。我在Ubuntu 12.04上 In [1]: pd._

我似乎无法使用read_剪贴板()。我试着复制我的一些数据,文档中的示例数据,最后只复制数字1。如你所见:

In [1]: %paste
1
## -- End pasted text --
Out[1]: 1

In [2]: pd.read_clipboard()
Segmentation fault (core dumped)
我做错了什么?还有其他人使用这个有困难吗

我使用IPython 0.12.1和pandas的最新开发版本。我在Ubuntu 12.04上

In [1]: pd.__version__
Out[1]: '0.10.1'
为了安全起见:

dallan@dielectric-pc:~/pandas-danielballan$ git fetch upstream master
From git://github.com/pydata/pandas
 * branch            master     -> FETCH_HEAD
dallan@dielectric-pc:~/pandas-danielballan$ git merge upstream/master
Already up-to-date.
dallan@dielectric-pc:~/pandas-danielballan$ git status
# On branch master
nothing to commit (working directory clean)
dallan@dielectric-pc:~/pandas-danielballan$ 

我是说最新的开发版本,来自github。我现在明白了为什么这是非常不清楚的。10.0.x有这个问题吗?奇怪的是,我没有看到这个(在Ubuntu 12.10上)。你安装过via吗?(你能包括pd.version.version吗?)。我还没有通过PPA安装。我使用使用
setup.py develop
构建的安装,因此我可以向pandas提交pull请求。这会产生奇怪的问题吗?我在主分支的一个未编辑的克隆上遇到了这个问题。它不应该这样做,它似乎可以从git的
'0.10.1.dev-10f255d'
。。。