leamas / ddupdate

Update DNS Data for Dynamic IP Addresses
MIT License
40 stars 28 forks source link

Wrong command for installation via pip3in README.md #75

Closed ruedigerkupper closed 1 year ago

ruedigerkupper commented 1 year ago

README.md says that ddupdate can be installed using pip3 with

sudo pip3 install ddupdate --prefix=/usr/local

The prefix in this call is wrong, this will install ddupdate to /usr/local/local/.... The call must be

sudo pip3 install ddupdate --prefix=/usr

Please correct.