Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] Fix SONiC installation failure caused by pip/pip3 not found #13284

Merged
merged 1 commit into from
Jan 11, 2023

Conversation

xumia
Copy link
Collaborator

@xumia xumia commented Jan 6, 2023

Why I did it

[Bug] Fix SONiC installation failure caused by pip/pip3 not found

[   13.214043] rc.local[523]: Reading package lists...
[   13.282396] rc.local[427]: + LANG=C DEBIAN_FRONTEND=noninteractive apt-get -y install /host/image-20201231.84/platform/x86_64-cel_e1031-r0/platform-modules-haliburton_0.9_amd64.deb
[   13.491331] rc.local[538]: Reading package lists...
[   13.562286] rc.local[538]: Building dependency tree...
[   13.634080] rc.local[538]: Reading state information...
[   13.706067] rc.local[538]: The following NEW packages will be installed:
[   13.794253] rc.local[538]:   platform-modules-haliburton
[   13.866269] rc.local[538]: 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
[   13.970064] rc.local[538]: Need to get 0 B/313 kB of archives.
[   14.046052] rc.local[538]: After this operation, 1831 kB of additional disk space will be used.
[   14.154261] rc.local[538]: Get:1 file:/host/image-20201231.84/platform/common  platform-modules-haliburton 0.9 [313 kB]
[   14.296631] rc.local[558]: debconf: delaying package configuration, since apt-utils is not installed
[   14.420187] rc.local[538]: Selecting previously unselected package platform-modules-haliburton.
(Reading database ... 31363 files and directories currently installed.)
[   15.206593] rc.local[538]: Preparing to unpack .../platform-modules-haliburton_0.9_amd64.deb ...
[   15.318549] rc.local[538]: Unpacking platform-modules-haliburton (0.9) ...
[   15.406080] rc.local[538]: Setting up platform-modules-haliburton (0.9) ...
[   18.459690] rc.local[538]: /usr/local/bin/platform_api_mgnt.sh: line 13: pip: command not found
[   18.570199] rc.local[538]: /usr/local/bin/platform_api_mgnt.sh: line 18: pip3: command not found
[   19.289708] rc.local[538]: Synchronizing state of platform-modules-haliburton.service with SysV service script with /lib/systemd/systemd-sysv-install.
[   19.463222] rc.local[538]: Executing: /lib/systemd/systemd-sysv-install enable platform-modules-haliburton

The main issue is the pip/pip3 command cannot be found when the package is being installed by apt-get.
When using the dpkg install, the searching path is PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
When using the apt-get install, the searching path is PATH=/usr/sbin:/usr/bin:/sbin:/bin
But the pip/pip3 default path is at /usr/local/bin, so dpkg works, but apt-get not work.

How I did it

Export the path /usr/local/bin for pip/pip3.
Make the deb packages can be installed by apt-get.

How to verify it

Which release branch to backport (provide reason below if selected)

  • 201811
  • 201911
  • 202006
  • 202012
  • 202106
  • 202111
  • 202205
  • 202211

Description for the changelog

Ensure to add label/tag for the feature raised. example - PR#2174 under sonic-utilities repo. where, Generic Config and Update feature has been labelled as GCU.

Link to config_db schema for YANG module changes

A picture of a cute animal (not mandatory but encouraged)

@xumia
Copy link
Collaborator Author

xumia commented Jan 8, 2023

@lornelong , could you please help review it? Thanks.

@prgeor
Copy link
Contributor

prgeor commented Jan 11, 2023

@lguohan please help merge

@lguohan lguohan merged commit e6a01ca into sonic-net:master Jan 11, 2023
mssonicbld pushed a commit to mssonicbld/sonic-buildimage that referenced this pull request Jan 12, 2023
…nic-net#13284)

The main issue is the pip/pip3 command cannot be found when the package is being installed by apt-get.
When using the dpkg install, the searching path is PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
When using the apt-get install, the searching path is PATH=/usr/sbin:/usr/bin:/sbin:/bin
But the pip/pip3 default path is at /usr/local/bin, so dpkg works, but apt-get not work.

How I did it
Export the path /usr/local/bin for pip/pip3.
Make the deb packages can be installed by apt-get.
@mssonicbld
Copy link
Collaborator

Cherry-pick PR to 202205: #13352

qiluo-msft pushed a commit that referenced this pull request Jan 12, 2023
…3284)

The main issue is the pip/pip3 command cannot be found when the package is being installed by apt-get.
When using the dpkg install, the searching path is PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
When using the apt-get install, the searching path is PATH=/usr/sbin:/usr/bin:/sbin:/bin
But the pip/pip3 default path is at /usr/local/bin, so dpkg works, but apt-get not work.

How I did it
Export the path /usr/local/bin for pip/pip3.
Make the deb packages can be installed by apt-get.
mssonicbld pushed a commit to mssonicbld/sonic-buildimage that referenced this pull request Jan 18, 2023
…nic-net#13284)

The main issue is the pip/pip3 command cannot be found when the package is being installed by apt-get.
When using the dpkg install, the searching path is PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
When using the apt-get install, the searching path is PATH=/usr/sbin:/usr/bin:/sbin:/bin
But the pip/pip3 default path is at /usr/local/bin, so dpkg works, but apt-get not work.

How I did it
Export the path /usr/local/bin for pip/pip3.
Make the deb packages can be installed by apt-get.
@mssonicbld
Copy link
Collaborator

Cherry-pick PR to 202211: #13411

mssonicbld pushed a commit that referenced this pull request Jan 18, 2023
…3284)

The main issue is the pip/pip3 command cannot be found when the package is being installed by apt-get.
When using the dpkg install, the searching path is PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
When using the apt-get install, the searching path is PATH=/usr/sbin:/usr/bin:/sbin:/bin
But the pip/pip3 default path is at /usr/local/bin, so dpkg works, but apt-get not work.

How I did it
Export the path /usr/local/bin for pip/pip3.
Make the deb packages can be installed by apt-get.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants