Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

docs: remove duplicate instruction to install psutil #40

Merged
merged 1 commit into from
Aug 9, 2023
Merged
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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,8 @@ counter.add(25, {"dimension-1": "value-1"})
To run the [example](example/basic_example.py), clone this repository and change to the `opentelemetry-metric-python` folder, then run:

```shell
pip install psutil # the example exports cpu which is retrieved using psutil, this is not required by the exporter.
pip install . # install the Dynatrace exporter
pip install psutil # install package is used by the example to read CPU/Memory usage
pip install psutil # this package is used by the example to read CPU/Memory usage
export LOGLEVEL=DEBUG # (optional) Set the log level to debug to see more output (default is INFO)
python example/basic_example.py
```
Expand Down