I have successfully installed MLFlow using pip install mlflow
but while running mlflow ui
command in the console it gives the following error
time_func = time.clock
AttributeError: module 'time' has no attribute 'clock'
I am aware of the fact that time.clock
is deprecated for Python v3.8
and above. How can I fix this, as I don't want to downgrade python version.