Skip to content
Merged

uv #457

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,32 +58,37 @@ git clone https://github.com/nirtal85/Selenium-Python-Example.git
cd selenium-python-example
```

### Create and activate a virtual environment
### Install uv

#### For Windows:
```bash
py -m pip install --user virtualenv
py -m venv env
.\env\Scripts\activate
pip install uv
```

#### For Mac:
```bash
python3 -m pip install --user virtualenv
python3 -m venv venv
source venv/bin/activate
python3 -m pip install uv
```

### Install Poetry
### Create and activate a virtual environment

#### For Windows:
```bash
uv venv
.\env\Scripts\activate
```

#### For Mac:
```bash
pip install poetry
uv venv
source .venv/bin/activate
```


### Install Project Dependencies

```bash
poetry install --no-root
uv pip sync uv.lock
```

### Create .env File
Expand Down