INNER CODE UNIT · Python
main
HenryNdubuaku/nanodl · nanodl/__init__.py:332
def main():
try:
flax = check_library_installed("flax")
jax = check_library_installed("jax")
optax = check_library_installed("optax")
einops = check_library_installed("einops")
test_flax(flax)
test_jax(jax)
test_optax(optax)
except ImportError as e:
print(e)
sys.exit(1)
except Exception as e:
print(f"An error occurred while verifying Jax/Flax/Optax installation: {e}")
sys.exit(1)