Python

pip

Pip cache

Cache location:

To disable the cache, use the flag --no-cache-dir

sources:

Tips

There is a built-in web server embed in Python3 that can server a folder:

python3 -m http.server 8000  # serve the current folder on every interfaces

# python3.4: bind
# Python 3.7: directory
python -m http.server --bind 127.0.0.1 --directory /tmp/

sources: