/usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches
NameSizeModeActions
__pycache__/-0755rm
file_cache.py35320644editdlrm
redis_cache.py9730644editdlrm
__init__.py3690644editdlrm
Edit: /usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/__init__.py (369B)
from textwrap import dedent try: from .file_cache import FileCache except ImportError: notice = dedent(''' NOTE: In order to use the FileCache you must have lockfile installed. You can install it via pip: pip install lockfile ''') print(notice) try: import redis from .redis_cache import RedisCache except ImportError: pass