From 4dab36c08cd34b8f9e6351ddc7ce7932b302af46 Mon Sep 17 00:00:00 2001 From: YueGuobin Date: Fri, 24 Apr 2026 10:33:41 +0800 Subject: [PATCH] docs: replace 'wireshark' with 'gns3server-web-wireshark-setup' in installation commands The CLI entry point was renamed from 'wireshark' to 'gns3server-web-wireshark-setup' to avoid conflicts with the system wireshark package. Co-Authored-By: Claude Opus 4.6 --- docs/development-setup.md | 2 +- docs/features/web-wireshark-business-process.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/development-setup.md b/docs/development-setup.md index 17de34965..3403972eb 100644 --- a/docs/development-setup.md +++ b/docs/development-setup.md @@ -103,7 +103,7 @@ source venv/bin/activate # For China mainland users, use mirror: # pip install -e . -i https://mirrors.aliyun.com/pypi/simple/ -pip install -e . && wireshark +pip install -e . && gns3server-web-wireshark-setup pip install -e .[ai-copilot] pip install -e .[dev] ``` diff --git a/docs/features/web-wireshark-business-process.md b/docs/features/web-wireshark-business-process.md index 6ef611345..c8dbff430 100644 --- a/docs/features/web-wireshark-business-process.md +++ b/docs/features/web-wireshark-business-process.md @@ -27,10 +27,10 @@ Before using Web Wireshark, install the GNS3 server and set up the Docker image: ```bash # Development install -pip install -e . && wireshark +pip install -e . && gns3server-web-wireshark-setup # Production install -pip install gns3-server && wireshark +pip install gns3-server && gns3server-web-wireshark-setup ``` This command will: