File tree Expand file tree Collapse file tree 1 file changed +8
-18
lines changed
Expand file tree Collapse file tree 1 file changed +8
-18
lines changed Original file line number Diff line number Diff line change @@ -58,32 +58,22 @@ git clone https://github.com/nirtal85/Selenium-Python-Example.git
5858cd selenium-python-example
5959```
6060
61- ### Create and activate a virtual environment
61+ ### Create and activate a virtual environment then Install project dependencies
6262
6363#### For Windows:
6464``` bash
65- py -m pip install --user virtualenv
66- py -m venv env
65+ pip install uv
66+ uv venv
6767.\e nv\S cripts\a ctivate
68+ uv pip sync uv.lock
6869```
6970
7071#### For Mac:
7172``` bash
72- python3 -m pip install --user virtualenv
73- python3 -m venv venv
74- source venv/bin/activate
75- ```
76-
77- ### Install Poetry
78-
79- ``` bash
80- pip install poetry
81- ```
82-
83- ### Install Project Dependencies
84-
85- ``` bash
86- poetry install --no-root
73+ python3 -m pip install uv
74+ uv venv
75+ source .venv/bin/activate
76+ uv pip sync uv.lock
8777```
8878
8979### Create .env File
You can’t perform that action at this time.
0 commit comments