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.

1
  • 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
    Commented Mar 22, 2022 at 6:33

1 Answer 1

0

Try running followings


pip install --upgrade pip

pip install --upgrade "jax[cpu]"

pip install trax

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.