|
|
@ -46,13 +46,13 @@ The only original thing being done is the editing and gathering of all materials
|
|
|
|
2. Create and activate a virtual environment:
|
|
|
|
2. Create and activate a virtual environment:
|
|
|
|
- On **Windows**:
|
|
|
|
- On **Windows**:
|
|
|
|
```sh
|
|
|
|
```sh
|
|
|
|
python -m venv venv
|
|
|
|
python -m venv ./venv
|
|
|
|
venv\Scripts\activate
|
|
|
|
.\venv\Scripts\activate
|
|
|
|
```
|
|
|
|
```
|
|
|
|
- On **macOS and Linux**:
|
|
|
|
- On **macOS and Linux**:
|
|
|
|
```sh
|
|
|
|
```sh
|
|
|
|
python3 -m venv venv
|
|
|
|
python3 -m venv ./venv
|
|
|
|
source venv/bin/activate
|
|
|
|
source ./venv/bin/activate
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
3. Install the required dependencies:
|
|
|
|
3. Install the required dependencies:
|
|
|
|