pythonpackage

How to install 'warnings' package in Python?


I've seen Python programs using

import warnings

How to install that package? I tried

pip install --upgrade warnings

and got an error

Collecting warnings
  Could not find a version that satisfies the requirement warnings (from versions: )
No matching distribution found for warnings

Solution

  • warnings is builtin. No need to install it.