Skip to content

doc: update pip install methods to include one-liner for latest code #734

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,24 @@ Python 3.7+ is supported. An unsupported Python 2 version exists as [pyshark-leg
Supports all modern versions of tshark / wireshark but certain features may be unavailable on older versions.

### All Platforms
Simply run the following to install the latest from pypi

Simply run the following to install the latest release from [PyPI](https://pypi.org/project/pyshark/):
```bash
pip install pyshark
```

Or install from the git repository:
To install the latest from GitHub:
```
pip install https://github.com/KimiNewt/pyshark/archive/refs/heads/master.zip#subdirectory=src
```

Or install from the git repository for local development:
```bash
git clone https://github.com/KimiNewt/pyshark.git
cd pyshark/src
python setup.py install
pip install -e .
```


### Mac OS X
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:
```bash
Expand Down