Rename gns3-wireshark-setup to wireshark for simpler command

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
YueGuobin 2026-04-22 14:13:19 +08:00
parent aac9b25b98
commit 2240012402
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View File

@ -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 . && gns3-wireshark-setup
pip install -e . && wireshark
pip install -e .[ai-copilot]
pip install -e .[dev]
```

View File

@ -27,10 +27,10 @@ Before using Web Wireshark, install the GNS3 server and set up the Docker image:
```bash
# Development install
pip install -e . && gns3-wireshark-setup
pip install -e . && wireshark
# Production install
pip install gns3-server && gns3-wireshark-setup
pip install gns3-server && wireshark
```
This command will:
@ -38,7 +38,7 @@ This command will:
2. Pull the `gns3/web-wireshark:latest` image from Docker Hub
3. If pull fails, build the image locally using the included Dockerfile
The `gns3-wireshark-setup` command shows the raw output from `docker pull` or `docker build`, allowing you to see the full progress.
The `wireshark` command shows the raw output from `docker pull` or `docker build`, allowing you to see the full progress.
---

View File

@ -51,7 +51,7 @@ ai-copilot = {file = ['ai-requirements.txt']}
gns3server = "gns3server.main:main"
gns3vmnet = "gns3server.utils.vmnet:main"
gns3server-uninstall-ai-copilot = "gns3server.utils.uninstall_ai_copilot:main"
gns3-wireshark-setup = "gns3server.agent.web_wireshark.setup_wireshark_image:main"
wireshark = "gns3server.agent.web_wireshark.setup_wireshark_image:main"
[tool.setuptools]
packages = ["gns3server"]