diff options
| author | Alex Schofield <git@ajschof.me> | 2025-03-03 00:07:35 +0000 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2025-03-03 00:07:35 +0000 |
| commit | d6cbccdde285b789ef1abfecfe128516b0f05b8a (patch) | |
| tree | bbc238a1a96f5ca1904fefdeaebdc272e1b5c8bc | |
| parent | 584b8280c3a9e035b0d3d90997f1ce42125a2d8b (diff) | |
| download | gdpr-obfuscator-d6cbccdde285b789ef1abfecfe128516b0f05b8a.tar.gz gdpr-obfuscator-d6cbccdde285b789ef1abfecfe128516b0f05b8a.zip | |
update installation section in README.md
| -rw-r--r-- | README.md | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -6,6 +6,8 @@ 4. [Setup](#setup) 1. [Prerequisites](#prerequisites) 2. [Installation](#installation) + 1. [Source](#from-source) + 2. [Prebuilt Package](#from-pypi) 5. [Usage](#usage) ## Overview @@ -31,20 +33,23 @@ This meets the requirements under the General Data Protection Regulation [(GDPR) ### Installation -1. Clone the repository: +There are two ways to install the package: + +#### Source ```bash git clone https://github.com/ajschofield/gdpr-obfuscator.git cd gdpr-obfuscator +poetry install ``` -2. Install dependencies using poetry +#### Prebuilt Package + +Download the latest release from [here](https://github.com/ajschofield/gdpr-obfuscator/releases/latest) and install using `pip`: ```bash -# Production -poetry install -# Developer (optional) -poetry install --dev +# Package name may be different to what is below +pip install gdpr_obfuscator-0.1.0-py3-none-any.whl ``` ## Usage |
