From 6412372bf476ea031c521b5214fd92119b82f00a Mon Sep 17 00:00:00 2001 From: jiangying Date: Wed, 17 Jul 2024 11:19:11 +0800 Subject: [PATCH] Update index.mdx --- docs/getting-started/index.mdx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/index.mdx b/docs/getting-started/index.mdx index 9fb7d7f..07ee7be 100644 --- a/docs/getting-started/index.mdx +++ b/docs/getting-started/index.mdx @@ -222,8 +222,12 @@ npm run build # Serving Frontend with the Backend cd ./backend -python -m venv -./venv/Scripts/activate + +# Optional, you can enable venv with to avoid pollute system packages +# python -m venv +# ./venv/Scripts/activate + +# Install dependencies pip install -r requirements.txt -U bash start.sh ```