mlflow / mlflow-example

An example MLflow project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pip install mlflow[extras] : no matches found

malanb5 opened this issue · comments

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