Skip to content

Commit

Permalink
Merge branch 'main' into tmp_1396
Browse files Browse the repository at this point in the history
  • Loading branch information
ternaus authored Mar 18, 2024
2 parents 6e70334 + 8fafa93 commit 36964b4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,21 @@ cd albumentations

We recommend using a virtual environment to isolate project dependencies. Ensure you have Python 3.8 or higher installed on your machine, as it is the minimum supported version for Albumentations. To create and activate a virtual environment, run the following commands:

#### Linux / macOS
```bash
python3 -m venv env
source env/bin/activate
```
#### Windows cmd.exe
```bash
python -m venv env
env\Scripts\activate.bat
```
#### Windows PowerShell
```bash
python -m venv env
env\Scripts\activate.ps1
```

#### Install development dependencies

Expand Down

0 comments on commit 36964b4

Please sign in to comment.