@@ -14,26 +14,28 @@ You should have already cloned your fork as described in [**Cloning a Repository
14
14
15
15
---
16
16
17
- ## Installing dependencies with PyCharm
18
- 1 . Load up your project in PyCharm.
19
- 2 . Go to the Project Settings by clicking ` File ` , then ` Settings... ` . Alternatively, use the shortcut key: ` Ctrl+Alt+S ` (` command+comma ` on Mac OS).
20
- 3 . Install the [ poetry plugin] ( https://plugins.jetbrains.com/plugin/14307-poetry ) .
21
- 4 . Navigate to ` Project Interpreter ` , then click the gear icon and click ` Add ` .<br />
22
- ![ PyCharm Interpreter Settings] ( /static/images/content/contributing/pycharm_interpreter.png ) <br />
23
- 5 . Click ` Poetry Environment ` , then click ` OK ` .<br />
24
- ![ PyCharm Poetry Environment] ( /static/images/content/contributing/pycharm_poetry.png ) <br />
25
- 6 . PyCharm will automatically install the packages required into a virtual environment.<br />
26
- ![ PyCharm Project Interpreter] ( /static/images/content/contributing/pycharm_poetry_success.png )
27
-
28
- ---
29
-
30
17
## Installing dependencies with the command line
18
+
31
19
1 . Make sure you are in the root project directory. This directory will always have a file titled ` README.md ` .
32
20
2 . Install project and development dependencies. Remember to also set up pre-commit hooks to ensure your pushed commits will never fail linting.
33
- ---
34
21
22
+ ---
35
23
36
24
``` shell
37
25
$ poetry install
38
26
$ poetry run task precommit
39
27
```
28
+
29
+ ---
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