Skip to content

Commit e8e8aef

Browse files
committed
fix venv path
1 parent 6e37c7e commit e8e8aef

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/CONTRIBUTING.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ ______________________________________________________________________
114114
To set up a local development environment, begin by cloning the repository:
115115

116116
```bash
117-
# clone the repo
118117
git clone https://github.com/Lightning-AI/pytorch-lightning.git
119118
cd pytorch-lightning
120119
```
@@ -123,13 +122,13 @@ Once in root level of the repository, install the dependencies using a package m
123122

124123
```bash
125124
# pip
126-
python -m venv ./venv
127-
source ./venv/bin/activate
125+
python -m venv .venv
126+
source .venv/bin/activate
128127
pip install ".[dev, examples]"
129128

130129
# uv
131130
uv venv
132-
source ./venv/bin/activate
131+
source .venv/bin/activate
133132
uv pip install ".[dev, examples]"
134133
```
135134

0 commit comments

Comments
 (0)