I did these steps to install tflite-model-maker
:
conda create --name myenv
conda activate myenv
pip install tensorflow
pip install tflite-model-maker
keep facing this issue:
ERROR: Cannot install flax because these package versions have conflicting dependencies.
The conflict is caused by:
optax 0.1.5 depends on jaxlib>=0.1.37
optax 0.1.4 depends on jaxlib>=0.1.37
optax 0.1.3 depends on jaxlib>=0.1.37
optax 0.1.2 depends on jaxlib>=0.1.37
optax 0.1.1 depends on jaxlib>=0.1.37
optax 0.1.0 depends on jaxlib>=0.1.37
optax 0.0.91 depends on jaxlib>=0.1.37
optax 0.0.9 depends on jaxlib>=0.1.37
optax 0.0.8 depends on jaxlib>=0.1.37
optax 0.0.6 depends on jaxlib>=0.1.37
optax 0.0.5 depends on jaxlib>=0.1.37
optax 0.0.3 depends on jaxlib>=0.1.37
optax 0.0.2 depends on jaxlib>=0.1.37
optax 0.0.1 depends on jaxlib>=0.1.37
tried to remove these packages but can not be removed:
conda remove --force optax='>=0.0.1' jaxlib='>=0.1.37'
What should i do?