Skip to content

Commit

Permalink
README: added packages to install (apt and pip) and used explicit 'pi…
Browse files Browse the repository at this point in the history
…p3' command (closes issue #4)
  • Loading branch information
mbideau committed Oct 25, 2020
1 parent be5f329 commit ed28415
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,21 @@ git clone https://github.com/mbideau/vcardtools.git vcardtools

Install packages requirements:
```
apt install --no-install-recommends python3-pip
apt install --no-install-recommends python3-pip python3-venv python3-setuptools
```

Create a python virtual environment :
Create a python virtual environment and activate it:
```
python3 -m venv vcardtools
cd vcardtools
. bin/activate
```

Install required python dependencies :
```
pip install vobject
pip install fuzzywuzzy
pip3 install wheel
pip3 install vobject
pip3 install fuzzywuzzy
```

## Usage
Expand Down

0 comments on commit ed28415

Please sign in to comment.