File tree Expand file tree Collapse file tree 1 file changed +15
-10
lines changed Expand file tree Collapse file tree 1 file changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -58,32 +58,37 @@ git clone https://github.com/nirtal85/Selenium-Python-Example.git
5858cd 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- .\e nv\S cripts\a ctivate
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+ .\e nv\S cripts\a ctivate
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
You can’t perform that action at this time.
0 commit comments