%general-entities; ]> Command Explanations -w dist: builds the appropriate "wheel" for this module in the directory dist. --no-build-isolation: tells pip3 to run the build in the system environment instead of creating a temporary build environment. --no-deps: prevents pip3 from building wheels for the project's dependencies. --no-index: ignores the package index (only looking at --find-links URLs instead). --find-links dist: looks for links to archives such as wheel (.whl) files in the directory dist. --no-cache-dir: diables the cache to prevent a warning when installing as the &root; user. : Upgrade the package to the newest available version. This option is used with the install command if a version of the package is already installed. : Reinstall the package even if it is up-to-date. This option is used with the install command if reinstalling the package or reverting to an earlier version of the package. : Do not install package dependencies. This option may be needed with the --upgrade or --force-reinstall options.