sramij
sramij

Reputation: 4925

How to install plistlib in python3 virtualenv?

I've created a Python 3 virtual environment, and I am trying to install the plistlib package.

However, I am getting the following error:

(venv) venv$pip install --upgrade plistlib
Collecting plistlib
  Could not find a version that satisfies the requirement plistlib (from versions: )
No matching distribution found for plistlib

Upvotes: 1

Views: 4618

Answers (1)

wim
wim

Reputation: 363294

The plistlib module is within the standard libraries. You don't need to install it, it will be available for import in your existing Python 3 installation.

Upvotes: 4

Related Questions