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
Copy file name to clipboardExpand all lines: README.md
+22-2Lines changed: 22 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ You can install and use HwCodecDetect in two ways.
51
51
### Method 1: Install via PyPI (Recommended)
52
52
This is the easiest method if you just want to use the tool quickly.
53
53
54
-
1. Install: Use pip to install HwCodecDetect from the official PyPI repository.
54
+
1. Install: Use pip to install HwCodecDetect from the [official PyPI repository](https://pypi.org/project/hwcodecdetect).
55
55
```bash
56
56
pip install HwCodecDetect
57
57
```
@@ -61,7 +61,27 @@ This is the easiest method if you just want to use the tool quickly.
61
61
HwCodecDetect
62
62
```
63
63
64
-
### Method 2: Install from Source
64
+
### Method 2: Download and Run Executable (Standalone)
65
+
Use this method if you prefer to run the tool without installing Python dependencies, or if the PyPI installation fails.
66
+
67
+
1. Download: Go to the project's [**Releases page**](https://github.com/whyb/HwCodecDetect/releases) and download the executable file corresponding to your operating system (e.g., `HwCodecDetect-Linux-x64`, `HwCodecDetect-Windows-x64.exe`).
68
+
69
+
2. (Linux/macOS only) Add Execute Permission: If you are on Linux or macOS, you need to grant the downloaded file execute permission.
70
+
```bash
71
+
# Replace 'HwCodecDetect-Linux-x64' with the actual downloaded filename
72
+
chmod +x HwCodecDetect-Linux-x64
73
+
```
74
+
75
+
3. Run: Execute the file directly from your terminal.
76
+
```bash
77
+
# For Linux/macOS
78
+
./HwCodecDetect-Linux-x64
79
+
80
+
# For Windows (e.g., in PowerShell or Command Prompt)
81
+
.\HwCodecDetect-Windows-x64.exe
82
+
```
83
+
84
+
### Method 3: Install from Source
65
85
Use this method if you have cloned the project source code from GitHub and want to run it locally.
66
86
67
87
1. Clone the repository: First, clone the project source code to your local machine.
0 commit comments