George
George

Reputation: 385

iPython: unicode in gnome-terminal (linux)

Why is this happening in the gnome-terminal? I think it supports utf8, printing unicode shouldn't be a problem.

Also, I have these in the .bashrc

LANG="en_US.utf8"
LANGUAGE="en_US.utf8"
LC_ALL="en_US.utf8"

export LANG
export LANGUAGE
export LC_ALL

Update:

Versions

Python 2.7.1, IPython 0.10.1, Disto: Ubuntu 11.04

Upvotes: 1

Views: 1661

Answers (1)

Thomas K
Thomas K

Reputation: 40330

IPython 0.10 has a serious bug with Unicode. It's fixed in the development version, which will become 0.11, and we're hopefully releasing that in the next couple of weeks. If you're happy running a development version, you can get it here.

Upvotes: 3

Related Questions