【发布时间】:2013-12-31 14:06:29
【问题描述】:
在 Digital Ocean 512MB 液滴上执行 pip install pandas 时,我收到错误 UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 41: ordinal not in range(128)
。
任何想法可能是什么原因造成的?我正在运行 Ubuntu 12.04 64 位。
【问题讨论】:
-
什么是完整回溯?
-
@Blender 刚刚添加到原帖中
-
您的 VPS 上有多少 RAM? GCC 正在被操作系统杀死,这可能意味着您在编译时用完了 RAM。添加交换分区或通过 apt-get 安装 Pandas:
sudo apt-get install python-pandas。 -
是的,在与other people类似的情况下也发生过这样的事情。
-
创建交换分区后工作
标签: python ubuntu pip python-2.x digital-ocean