diff options
author | 2025-07-15 16:55:49 -0700 | |
---|---|---|
committer | 2025-07-17 18:41:46 -0700 | |
commit | 91c70d7d574cde5cf68dbf5128eec59604048ab4 (patch) | |
tree | 09a9335545ad83f66539f9cfc46bbeaaa2cd913f | |
parent | Project installation guides from poetry to uv (diff) |
Installation of project dependencies guide migrated to uv
Removed PyCharm guide due to it containing the poetry plugin and there
isn't a direct alternative to that besides just creating a virtual
environment from uv and using that in PyCharm
-rw-r--r-- | pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md index 26d6de30..202e2213 100644 --- a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md +++ b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md @@ -22,20 +22,8 @@ You should have already cloned your fork as described in [**Cloning a Repository --- ```shell -$ poetry install -$ poetry run task precommit +$ uv sync +$ uv run task precommit ``` --- - -## Installing dependencies with PyCharm - -1. Load up your project in PyCharm. -2. Go to the Project Settings by clicking `File`, then `Settings...`. Alternatively, use the shortcut key: `Ctrl+Alt+S` (`command+comma` on Mac OS). -3. Install the [poetry plugin](https://plugins.jetbrains.com/plugin/14307-poetry). -4. Navigate to `Project Interpreter`, then click the gear icon and click `Add`.<br/> - <br/> -5. Click `Poetry Environment`, then click `OK`.<br/> - <br/> -6. PyCharm will automatically install the packages required into a virtual environment.<br/> -  |