mlflow-example
mlflow-example copied to clipboard
pip install mlflow[extras] : no matches found
The following command gives: no matches found
pip install mlflow[extras]
Are the brackets not supposed to be taken as literals?
you can try it again like this:
pip install 'mlflow[extras]'
if you are using zsh, you refer to this doc https://zsh.sourceforge.io/Guide/zshguide05.html#l137
That works great. Thanks @sunpcm