Skip to content

Commit 69f5eed

Browse files
committed
uv
1 parent 8e52c0d commit 69f5eed

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

.github/README.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,32 +58,37 @@ git clone https://github.com/nirtal85/Selenium-Python-Example.git
5858
cd selenium-python-example
5959
```
6060

61-
### Create and activate a virtual environment
61+
### Install uv
6262

6363
#### For Windows:
6464
```bash
65-
py -m pip install --user virtualenv
66-
py -m venv env
67-
.\env\Scripts\activate
65+
pip install uv
6866
```
6967

7068
#### For Mac:
7169
```bash
72-
python3 -m pip install --user virtualenv
73-
python3 -m venv venv
74-
source venv/bin/activate
70+
python3 -m pip install uv
7571
```
7672

77-
### Install Poetry
73+
### Create and activate a virtual environment
74+
75+
#### For Windows:
76+
```bash
77+
uv venv
78+
.\env\Scripts\activate
79+
```
7880

81+
#### For Mac:
7982
```bash
80-
pip install poetry
83+
uv venv
84+
source .venv/bin/activate
8185
```
8286

87+
8388
### Install Project Dependencies
8489

8590
```bash
86-
poetry install --no-root
91+
uv pip sync uv.lock
8792
```
8893

8994
### Create .env File

0 commit comments

Comments
 (0)