Skip to content

Commit bcf3eb9

Browse files
refactor: Update README.md.
1 parent 69a378e commit bcf3eb9

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,40 @@ This repository contains a set of configurations for linters and formatters that
4545
- String normalization disabled
4646
- Target Python version: py313
4747
- Excluded directory: `.venv`
48+
49+
- **.gitignore**
50+
A comprehensive .gitignore file для Python.
51+
52+
## Installation
53+
54+
### Step 1: Clone the Repository
55+
56+
Clone the project repository using Git:
57+
58+
```bash
59+
git clone https://github.com/RandomProgramm3r/Python-Linters-Configuration
60+
```
61+
62+
### Step 2: Create and activate a virtual environment
63+
64+
Create a virtual environment using the `venv` command, which allows you to isolate project dependencies:
65+
66+
```bash
67+
python3 -m venv venv # Linux/MacOS
68+
python -m venv venv # Windows
69+
```
70+
71+
Activate the virtual environment:
72+
73+
```bash
74+
source venv/bin/activate # Linux/MacOS
75+
source venv/Scripts/activate # Windows
76+
```
77+
78+
### Step 3: Installing Dependencies
79+
80+
Install the dependencies (they include all **flake8** dependencies)
81+
82+
```bash
83+
pip install -r requirements/linters.txt
84+
```

0 commit comments

Comments
 (0)