Skip to content

Commit 91c70d7

Browse files
committed
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
1 parent b34e714 commit 91c70d7

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

pydis_site/apps/content/resources/guides/pydis-guides/contributing/installing-project-dependencies.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,8 @@ You should have already cloned your fork as described in [**Cloning a Repository
2222
---
2323

2424
```shell
25-
$ poetry install
26-
$ poetry run task precommit
25+
$ uv sync
26+
$ uv run task precommit
2727
```
2828

2929
---
30-
31-
## Installing dependencies with PyCharm
32-
33-
1. Load up your project in PyCharm.
34-
2. Go to the Project Settings by clicking `File`, then `Settings...`. Alternatively, use the shortcut key: `Ctrl+Alt+S` (`command+comma` on Mac OS).
35-
3. Install the [poetry plugin](https://plugins.jetbrains.com/plugin/14307-poetry).
36-
4. Navigate to `Project Interpreter`, then click the gear icon and click `Add`.<br/>
37-
![PyCharm Interpreter Settings](/static/images/content/contributing/pycharm_interpreter.png)<br/>
38-
5. Click `Poetry Environment`, then click `OK`.<br/>
39-
![PyCharm Poetry Environment](/static/images/content/contributing/pycharm_poetry.png)<br/>
40-
6. PyCharm will automatically install the packages required into a virtual environment.<br/>
41-
![PyCharm Project Interpreter](/static/images/content/contributing/pycharm_poetry_success.png)

0 commit comments

Comments
 (0)