Changeset c6df98a1 for chapter08/python.xml
- Timestamp:
- 09/01/2022 11:27:12 AM (13 months ago)
- Branches:
- xry111/arm64, xry111/arm64-12.0
- Children:
- f4facc4
- Parents:
- bbd6346 (diff), baecd49 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
chapter08/python.xml
rbbd6346 rc6df98a1 103 103 of this recommendation is for avoiding a conflict with the system 104 104 package manager (<command>dpkg</command> for example), but LFS does not 105 have a system-wide package manager so this is not a problem. If desired, 106 suppress this warning by running the following commands:</para> 105 have a system-wide package manager so this is not a problem. And, 106 <command>pip3</command> will attempt to check for a new version of 107 itself whenever it's run. As domain name resolving is not configured 108 yet in LFS chroot environment, it will fail to check for a new version 109 and produce a warning. Once we boot the LFS system and set up network 110 connection, it will then produce a warning telling the user to update it 111 from a pre-built wheel on PyPI if any new version is available. But LFS 112 consider <command>pip3</command> a part of Python 3 so it should not be 113 updated separately, and an update from a pre-built wheel will deviate 114 from our purpose to build a Linux system from source code. So the 115 warning for a new <command>pip3</command> version should be ignored as 116 well. If desired, suppress these warnings by running the following 117 commands:</para> 107 118 108 119 <screen><userinput remap="install">cat > /etc/pip.conf << EOF 109 120 [global] 110 121 root-user-action = ignore 122 disable-pip-version-check = true 111 123 EOF 112 124 </userinput></screen>
Note:
See TracChangeset
for help on using the changeset viewer.