You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Create and activate virtual environment (optional, but recommended)
75
-
python3.12 -m pip install -U pip venv
76
-
python3.12 -m venv .venv
77
-
source .venv/bin/activate
75
+
# Create and activate virtual environment (optional, but strongly recommended)
76
+
python -m venv venv
77
+
source venv/bin/activate
78
78
79
79
# Install dependencies
80
80
pip install -r requirements.txt
@@ -92,7 +92,7 @@ python app.py
92
92
93
93
> [!NOTE]
94
94
> If you are using a virtual environment, ensure you activate it every time you reconnect your terminal session before you run/update the logviewer.
95
-
> You can do this by running `source .venv/bin/activate` in the logviewer directory.
95
+
> You can do this by running `source venv/bin/activate` in the logviewer directory.
96
96
97
97
You can verify the logviewer is working by navigating to `http://<IP_OF_SERVER>:8000` (if you didn't change the bind IP / port) and should be greeted with the Logviewer main page.
0 commit comments