Reputation: 14329
I'm trying to install plistutils and use it in terminale, I tried to do this:
brew install python
pip install plistutils
I found that it's located in
/usr/local/lib/python3.7/site-packages/plistutils/
How can I use plistutils
from the terminal? Something like this:
atikhonov: plistutils -d -i file.plist
Upvotes: 1
Views: 207
Reputation: 57510
plistutils
does not define any commands. You can't use it from the terminal, only inside Python code.
Upvotes: 1