From 041ccc7323360e8cc1576bd27f2cd69091d6b16f Mon Sep 17 00:00:00 2001 From: pushfoo <36696816+pushfoo@users.noreply.github.com> Date: Sat, 25 Feb 2023 02:55:35 -0500 Subject: [PATCH] Add pip upgrade to install instructions --- CONTRIBUTING.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c34da99f5..4a84d14ae 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -53,6 +53,17 @@ terminal from inside the top level of the arcade directory: pip install -e .[dev] ``` +If you get an error like the one below, you probably need to update your pip version: +``` +ERROR: File "setup.py" not found. Directory cannot be installed in editable mode: /home/user/Projects/arcade +(A "pyproject.toml" file was found, but editable mode currently requires a setup.py based build.) +``` + +Upgrade by running the following command: +```shell +pip install --upgrade pip +``` + ## Testing You should test your changes locally before submitting a pull request