Skip to content

Commit cd93952

Browse files
committed
docs: add Conda installation instructions to README
1 parent 37a1aed commit cd93952

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ cd PyDevCheat
4545
```
4646

4747
2. Create and activate a virtual environment:
48+
49+
Using venv:
4850
```bash
4951
# Windows
5052
python -m venv venv
@@ -55,6 +57,13 @@ python3 -m venv venv
5557
source venv/bin/activate
5658
```
5759

60+
Using Conda:
61+
```bash
62+
# Create a new conda environment
63+
conda create -n pydevcheat python=3.8
64+
conda activate pydevcheat
65+
```
66+
5867
3. Install the package in development mode:
5968
```bash
6069
pip install -e .

0 commit comments

Comments
 (0)