%general-entities; ]> flit-core &flit-core-version;
&flit-core-url;
Flit-Core-&flit-core-version; Flit-core <para>Flit-core is the distribution-building parts of Flit (a packaging tool for simple Python modules).</para> <segmentedlist> <segtitle>&buildtime;</segtitle> <segtitle>&diskspace;</segtitle> <seglistitem> <seg>&flit-core-fin-sbu;</seg> <seg>&flit-core-fin-du;</seg> </seglistitem> </segmentedlist> </sect2> <sect2 role="installation"> <title>Installation of Flit-Core Build the package: pip3 wheel -w dist --no-build-isolation --no-deps $PWD Install the package: pip3 install --no-index --no-user --find-links dist flit_core The meaning of the pip3 configuration options and commands: wheel This command builds the wheel archive for this package. -w dist Instructs pip to put the created wheel into the dist directory. install This command installs the package. --no-build-isolation, --no-deps, and --no-index These options prevent fetching files from the online package repository (PyPI). If packages are installed in the correct order, pip won't need to fetch any files in the first place; these options add some safety in case of user error. --find-links dist Instructs pip to search for wheel archives in the dist directory. Contents of Flit-Core Installed directory /usr/lib/python&python-minor;/site-packages/flit_core and /usr/lib/python&python-minor;/site-packages/flit_core-&flit-core-version;.dist-info