Dave Smith
Dave Smith

Reputation: 219

Jupyter notebook is displayed partially in French

I'm using Jupyter for Python programming on Windows 10 and some of the text is translated in French but not all of it (which makes it kinda annoying).

enter image description here

Does someone know how to change the display language?

I am unable to find the answer on internet because every time I'm searching for "language" it shows me answers for programming languages (R, Python, etc.)

Upvotes: 11

Views: 20996

Answers (7)

Jasurbek16
Jasurbek16

Reputation: 11

I know that this question was asked years ago but I have noticed this situation in Arch Linux while running the jupyter notebook command.

Recently, I have fixed this issue on my OS via setting the LANGUAGE environment variable to "en_US". I think this might help anyone searching for solutions.

Upvotes: 0

WittyTheMighty
WittyTheMighty

Reputation: 1

I had the same problem but my browser had the two languages register in the settings (French and English). You need to put English at the top priority :

As you can see here:

enter image description here

Upvotes: 0

Qinjie
Qinjie

Reputation: 1928

In windows, set an environment variable LANG=en_US. That fixed my problem.

Upvotes: 3

Pavel Paliyuk
Pavel Paliyuk

Reputation: 53

A solution without changing browser language:

Go to Anaconda3\Lib\site-packages\notebook\i18n (if you experience this problem in some virtual env -> go to Anaconda3\envs\yourenv\Lib\site-packages\notebook\i18n).

Here you have directories named as languages. For me, it was enough to delete the directory with a language which i dont want to be used in Jupyter. There still were some other languages left in the i18n but fortunately Jupyter used English anyway.

The source: https://github.com/jupyter/notebook/issues/4158#issuecomment-652161294 says that you have to rename the language which you are annoyed by.

Upvotes: 3

Gowtham Jayachandiran
Gowtham Jayachandiran

Reputation: 31

(Internet Explorer): Just go to your internet options in the settings, Choose 'Languages' from the general tab. A new pop up will open with all listed/available languages in it. Simply remove everything except your required language.

(Google Chrome): Go to settings, choose 'Advanced'. Select Languages option. Set what language you are looking for in the mentioned place.

Upvotes: 3

Salomon Kabongo
Salomon Kabongo

Reputation: 569

If you are using Firefox, be sure that the only language is EnglishFirefox settings, but if you are using other navigator, it is the same things.

Upvotes: -1

Janik
Janik

Reputation: 116

I had the same problem. Had to change the language settings in Chrome.

Upvotes: 10

Related Questions