Tikhonov Aleksandr
Tikhonov Aleksandr

Reputation: 14329

How to use Python package on Mac after pip install?

I'm trying to install plistutils and use it in terminale, I tried to do this:

  1. brew install python
  2. pip install plistutils
  3. ???

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

Answers (1)

jwodder
jwodder

Reputation: 57510

plistutils does not define any commands. You can't use it from the terminal, only inside Python code.

Upvotes: 1

Related Questions