Naomi Fridman
Naomi Fridman

Reputation: 2144

Jupyter notebook become RTL after upgrade

I created python 3.6 environment in miniconda. Jupyter notebook is working now right-to-left enter image description here

How can I fix it ?

installed packages:

ipykernel                 4.7.0                    py36_0    conda-forge
ipython                   6.2.1                    py36_1    conda-forge
ipython_genutils          0.2.0                    py36_0    conda-forge
jsonschema                2.5.1                    py36_0    conda-forge
jupyter_client            5.2.1                    py36_0    conda-forge
jupyter_core              4.4.0                      py_0    conda-forge
notebook                  5.2.2                    py36_1    conda-forge

Notebook metadata:

{
  "celltoolbar": "Edit Metadata",
  "kernelspec": {
    "name": "python3",
    "display_name": "Python 3",
    "language": "python"
  },
  "language_info": {
    "name": "python",
    "version": "3.6.4",
    "mimetype": "text/x-python",
    "codemirror_mode": {
      "name": "ipython",
      "version": 3
    },
    "pygments_lexer": "ipython3",
    "nbconvert_exporter": "python",
    "file_extension": ".py"
  }
}

Upvotes: 5

Views: 4398

Answers (3)

Dawn
Dawn

Reputation: 3628

For me the only thing that worked is to remove the RTL language from the list of languages of Chrome.

Upvotes: 0

Golden
Golden

Reputation: 417

Permanent Solution that worked for me:

On your chrome -> settings -> advanced -> languages

click the arrow to order languages: enter image description here

Make sure your first language is a ltr one.

Upvotes: 4

Yedidya
Yedidya

Reputation: 221

In a notebook:

  1. press ctrl+shift+F

  2. search rtl

  3. select togle rtl

Upvotes: 22

Related Questions