Skip to content

Commit

Permalink
Fix pip install extras command in CONTRIUTING doc (mlflow#4515)
Browse files Browse the repository at this point in the history
Before this change, the document listed `pip install -e . [extras]`. This command did not work. When I removed the space between `.` and `[extras]`, like the same command below it, the command worked.

Signed-off-by: Jerry Liang <jerry.liang@databricks.com>
  • Loading branch information
jerrylian-db authored Jul 1, 2021
1 parent 4c4c743 commit 5841e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ by running the following from your checkout of MLflow:
conda create --name mlflow-dev-env python=3.6
conda activate mlflow-dev-env
pip install -e . [extras] # installs mlflow from current checkout with some useful extra utilities
pip install -e .[extras] # installs mlflow from current checkout with some useful extra utilities
If you plan on doing development and testing, you will also need to install the following into the conda environment:

Expand Down

0 comments on commit 5841e4f

Please sign in to comment.