We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37a1aed commit cd93952Copy full SHA for cd93952
README.md
@@ -45,6 +45,8 @@ cd PyDevCheat
45
```
46
47
2. Create and activate a virtual environment:
48
+
49
+Using venv:
50
```bash
51
# Windows
52
python -m venv venv
@@ -55,6 +57,13 @@ python3 -m venv venv
55
57
source venv/bin/activate
56
58
59
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
67
3. Install the package in development mode:
68
69
pip install -e .
0 commit comments