|
49 | 49 |
|
50 | 50 | ### Set Up MLflow
|
51 | 51 |
|
52 | | -Ensure MLflow is installed on your system. To avoid common installation issues and keep dependencies isolated, create and activate a Python virtual environment as follows: |
| 52 | +Ensure MLflow is installed on your system: |
| 53 | + |
| 54 | +```bash |
| 55 | +pip install mlflow |
| 56 | +``` |
| 57 | + |
| 58 | +For MacOS users, we recommend creating and activating a Python virtual environment to avoid common installation issues and keep dependencies isolated: |
53 | 59 |
|
54 | 60 | ```bash
|
55 | 61 | python3 -m venv mlflow-venv
|
56 | 62 | source mlflow-venv/bin/activate
|
57 | 63 | pip install mlflow
|
58 | 64 | ```
|
59 | 65 |
|
60 | | -**Note:** MLflow is compatible with MacOS. If you encounter issues with the default system Python, consider installing Python 3 via the Homebrew package manger using `brew install python`. In this case, installing MLflow is now `pip3 install mlflow`. |
61 | | - |
62 | 66 | Remember to activate your virtual environment (`source mlflow-venv/bin/activate`) each time you open a new terminal before running MLflow commands.
|
63 | 67 |
|
64 | 68 | ### Start the MLflow Tracking Server
|
|
0 commit comments