File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
articles/active-directory-b2c Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -44,22 +44,22 @@ This article uses [Python 3.9+](https://www.python.org/) and [Flask 2.1](https:/
44
44
45
45
# [macOS](#tab/macos)
46
46
47
- ` ` ` bash
47
+ ` ` ` zsh
48
48
python3 -m venv .venv
49
49
source .venv/bin/activate
50
50
` ` `
51
51
52
52
# [Windows](#tab/windows)
53
53
54
- ` ` ` bash
54
+ ` ` ` cmd
55
55
py -3 -m venv .venv
56
56
.venv\s cripts\a ctivate
57
57
` ` `
58
58
---
59
59
60
60
1. Update pip in the virtual environment by running the following command in the terminal:
61
61
62
- ` ` ` bash
62
+ ```
63
63
python -m pip install --upgrade pip
64
64
```
65
65
@@ -73,13 +73,13 @@ This article uses [Python 3.9+](https://www.python.org/) and [Flask 2.1](https:/
73
73
74
74
# [macOS](#tab/macos)
75
75
76
- ` ` ` bash
76
+ ` ` ` zsh
77
77
export FLASK_ENV=development
78
78
` ` `
79
79
80
80
# [Windows](#tab/windows)
81
81
82
- ` ` ` bash
82
+ ` ` ` cmd
83
83
set FLASK_ENV=development
84
84
` ` `
85
85
---
@@ -111,13 +111,13 @@ python -m pip install -r requirements.txt
111
111
112
112
# [macOS](#tab/macos)
113
113
114
- ` ` ` bash
114
+ ` ` ` zsh
115
115
python -m pip install -r requirements.txt
116
116
` ` `
117
117
118
118
# [Windows](#tab/windows)
119
119
120
- ` ` ` bash
120
+ ` ` ` cmd
121
121
py -m pip install -r requirements.txt
122
122
` ` `
123
123
@@ -426,13 +426,13 @@ python -m flask run --host localhost --port 5000
426
426
427
427
# [macOS](#tab/macos)
428
428
429
- ` ` ` bash
429
+ ` ` ` zsh
430
430
python -m flask run --host localhost --port 5000
431
431
` ` `
432
432
433
433
# [Windows](#tab/windows)
434
434
435
- ` ` ` bash
435
+ ` ` ` cmd
436
436
py -m flask run --host localhost --port 5000
437
437
` ` `
438
438
You can’t perform that action at this time.
0 commit comments