Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
|
@@ -45,10 +45,17 @@ cd GoEmotions
|
|
| 45 |
python -m venv venv
|
| 46 |
```
|
| 47 |
|
|
|
|
| 48 |
```bash
|
| 49 |
venv\Scripts\activate
|
| 50 |
```
|
| 51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
`Step 4` - Install the required packages using pip: (This step can be skipped if working on GitHub Codespaces as it automatically installs the requirements!)
|
| 53 |
|
| 54 |
```bash
|
|
|
|
| 45 |
python -m venv venv
|
| 46 |
```
|
| 47 |
|
| 48 |
+
For Windows
|
| 49 |
```bash
|
| 50 |
venv\Scripts\activate
|
| 51 |
```
|
| 52 |
|
| 53 |
+
For Linux/MacOS
|
| 54 |
+
|
| 55 |
+
```bash
|
| 56 |
+
source venv/bin/activate
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
`Step 4` - Install the required packages using pip: (This step can be skipped if working on GitHub Codespaces as it automatically installs the requirements!)
|
| 60 |
|
| 61 |
```bash
|