File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,24 @@ Python 3.7+ is supported. An unsupported Python 2 version exists as [pyshark-leg
19
19
Supports all modern versions of tshark / wireshark but certain features may be unavailable on older versions.
20
20
21
21
### All Platforms
22
- Simply run the following to install the latest from pypi
22
+
23
+ Simply run the following to install the latest from [ PyPI] ( https://pypi.org/project/pyshark/ ) :
23
24
``` bash
24
25
pip install pyshark
25
26
```
26
27
27
- Or install from the git repository:
28
+ To install the latest from GitHub:
29
+ ```
30
+ pip install pip install https://github.com/KimiNewt/pyshark/archive/refs/heads/master.zip#subdirectory=src
31
+ ```
32
+
33
+ Or install from the git repository for local development:
28
34
``` bash
29
35
git clone https://github.com/KimiNewt/pyshark.git
30
36
cd pyshark/src
31
- python setup.py install
37
+ pip install -e .
32
38
```
33
39
34
-
35
40
### Mac OS X
36
41
You may have to install libxml which can be unexpected. If you receive an error from clang or an error message about libxml, run the following:
37
42
``` bash
You can’t perform that action at this time.
0 commit comments