1

enter image description here

Guys, Help we with this, I installed trax with pip install trax, but it showing error, after restarting the kernel also Getting this error.

Aravind R
  • 835
  • 1
  • 7
  • 14
  • 2
    maybe you have two Pythons installed and `pip` install modules for one Python but you run code with other Python. Pythons don't share modules. Maybe run `sys.executable` to get `/full/path/to/python` and later use `/full/path/to/python -m pip install trax` – furas Mar 22 '22 at 06:33

1 Answers1

0

Try running followings


pip install --upgrade pip

pip install --upgrade "jax[cpu]"

pip install trax
treePLE
  • 41
  • 4