MLFlow 项目; bash: python: 找不到命令
MLFlow projects; bash: python: command not found
我是 运行 模型的 MLflow 项目,使用来自我的 ubuntu 20.04 终端的以下命令
mlflow run . --no-conda -P alpha=0.5
我的系统没有 conda 或 python(但是它有 python3)。所以,我使用终端
为python添加了别名
alias python='python3'
之后我可以使用 python
在终端中打开 python。但是,我仍然得到同样的错误
2021/11/21 08:07:34 INFO mlflow.projects.utils: === Created directory /tmp/tmpp4h595ql for downloading remote URIs passed to arguments of type 'path' ===
2021/11/21 08:07:34 INFO mlflow.projects.backend.local: === Running command 'python tracking.py 0.5 0.1' in run with ID 'e50ca47b3f8848a083906be6220c26fc' ===
bash: python: command not found
2021/11/21 08:07:34 ERROR mlflow.cli: === Run (ID 'e50ca47b3f8848a083906be6220c26fc') failed ===
如何摆脱这个错误?
在 MLproject
文件中将 python
更改为 python3
以解决错误。
command: "python3 tracking.py {alpha} {l1_ratio}"
我是 运行 模型的 MLflow 项目,使用来自我的 ubuntu 20.04 终端的以下命令
mlflow run . --no-conda -P alpha=0.5
我的系统没有 conda 或 python(但是它有 python3)。所以,我使用终端
为python添加了别名alias python='python3'
之后我可以使用 python
在终端中打开 python。但是,我仍然得到同样的错误
2021/11/21 08:07:34 INFO mlflow.projects.utils: === Created directory /tmp/tmpp4h595ql for downloading remote URIs passed to arguments of type 'path' ===
2021/11/21 08:07:34 INFO mlflow.projects.backend.local: === Running command 'python tracking.py 0.5 0.1' in run with ID 'e50ca47b3f8848a083906be6220c26fc' ===
bash: python: command not found
2021/11/21 08:07:34 ERROR mlflow.cli: === Run (ID 'e50ca47b3f8848a083906be6220c26fc') failed ===
如何摆脱这个错误?
在 MLproject
文件中将 python
更改为 python3
以解决错误。
command: "python3 tracking.py {alpha} {l1_ratio}"