Linux From Scratch - Version 12.1-systemd | ||
---|---|---|
Chapter 8. Installing Basic System Software | ||
이전 | 위로 / 처음으로 | 다음 |
Python-3.12.2 | Wheel-0.42.0 |
Flit-core는 Flit(간단한 Python 모듈을 위한 패키징 도구)의 배포-빌드 를 담당하는 패키지 입니다.
패키지를 빌드합니다.
pip3 wheel -w dist --no-cache-dir --no-build-isolation --no-deps $PWD
패키지를 설치합니다.
pip3 install --no-index --no-user --find-links dist flit_core
wheel
dist
디렉터리에 넣도록 pip
에 지시합니다.pip
가 생성된 휠을 /root/.cache/pip
디렉터리에 복사하지 않도록 합니다.install
pip
가 dist
디렉터리에서 휠 아카이브를 검색하도록 지시합니다.