Skip to content

Commit

Permalink
Update contribution guide with Windows virtual environment setup (#1590)
Browse files Browse the repository at this point in the history
Co-authored-by: Abdulaziz Aloqeely <[email protected]>
  • Loading branch information
Aloqeely and Aloqeely authored Mar 18, 2024
1 parent 0cb8de5 commit 8fafa93
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 8fafa93

Please sign in to comment.