Guys, Help we with this, I installed trax with pip install trax, but it showing error, after restarting the kernel also Getting this error.
Asked
Active
Viewed 412 times
1
-
2maybe 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 Answers
0
Try running followings
pip install --upgrade pip
pip install --upgrade "jax[cpu]"
pip install trax

treePLE
- 41
- 4