pip
supports installing extra components while installing a Python package from internet, e.g.,
pip install dask[all]
pip install "dask[all] @ git+https://github.com/dask/dask"
However, does it support installing extra components when installing from a local Python package? For example, if I have the dask Python package downloaded to local, how can I install it with specific extra components?