WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: persistent pip troubleshooting  (Read 1741 times)

Offline gatorback

  • Newbie
  • *
  • Posts: 17
persistent pip troubleshooting
« on: February 26, 2020, 01:18:16 PM »
"PERSISTENT PIP" was installed per SergiSM's procedure:

Code: [Select]
wget https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py

vi /opt/.filetool.lst
/usr/local/bin/pip
/usr/local/bin/pip-2.7
/usr/local/lib/python2.7/site-packages/pip-9.0.1.dist-info
/usr/local/lib/python2.7/site-packages/serial

filetool.sh -b

The device was able to install the 'requests' python library.   The rPi-ZW was rebooted and pip testing failed:

Code: [Select]
tc@box:~$ sudo -H pip install requests
Traceback (most recent call last):
  File "/usr/local/bin/pip", line 5, in <module>
    from pip._internal.cli.main import main
ModuleNotFoundError: No module named 'pip._internal'

What is the next step for diagnostic / corrective action?  Any insight (explanation) why pip fails after reboot is appreciated.

    [EDIT]: Added code tags.  Rich
« Last Edit: February 26, 2020, 01:51:15 PM by Rich »
Raspberry Pi Zero W

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11243
Re: persistent pip troubleshooting
« Reply #1 on: February 26, 2020, 01:53:42 PM »
Hi gatorback
Please use  Code Tags  when posting commands and responses seen in a terminal. To use  Code Tags  click on the  #  icon
above the reply box and paste your text between the  Code Tags  as shown in this example:

Quote
[code][   36.176529] pcm512x 1-004d: Failed to get supply 'AVDD': -517
[   36.176536] pcm512x 1-004d: Failed to get supplies: -517
[   36.191753] pcm512x 1-004d: Failed to get supply 'AVDD': -517[/code]

It will appear like this in your post:
Code: [Select]
[   36.176529] pcm512x 1-004d: Failed to get supply 'AVDD': -517
[   36.176536] pcm512x 1-004d: Failed to get supplies: -517
[   36.191753] pcm512x 1-004d: Failed to get supply 'AVDD': -517

Code Tags  serve as visual markers between what you are trying to say and the information you are posting. They also preserve
spacing so column aligned data displays properly.
« Last Edit: August 01, 2020, 10:22:24 AM by Rich »

Offline gatorback

  • Newbie
  • *
  • Posts: 17
Re: persistent pip troubleshooting
« Reply #2 on: February 26, 2020, 02:25:49 PM »
To ensure pip persistence between reboots: /usr/local/bin/pip was added to the file: /opt/.filetool.lst and saved with filetool.sh -b

After reboot, tests reveal that

Code: [Select]
sudo -H pip install requests
will install correctly ONLY IF:

Code: [Select]
sudo -H python /home/tc/pipPersistent/get-pip.py
executed prior: a failure of pip persistence.  It seems that pip is somehow not completely 'saved' and a reboot loses some pip install information.  What additional steps must be taken to ensure pip is persistent after reboots?   
« Last Edit: February 26, 2020, 02:36:50 PM by gatorback »
Raspberry Pi Zero W

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11243
Re: persistent pip troubleshooting
« Reply #3 on: February 26, 2020, 05:28:12 PM »
Hi gatorback
I don't use Python myself, but I think  pip  is part of the Python package:
http://forum.tinycorelinux.net/index.php/topic,23500.0.html

Offline gatorback

  • Newbie
  • *
  • Posts: 17
Re: persistent pip troubleshooting
« Reply #4 on: February 26, 2020, 06:20:34 PM »
Thanks for the link.  pip's  new directories were identified and added to filetool.lst to successfully ensure persistence

pip's new directories have today's date / time after installing pip:

Code: [Select]
$ sudo -H python /home/tc/pipPersistent/get-pip.py
New pip directories are in:

Code: [Select]
$ sudo ls -l /usr/local/lib/python2.7/site-packages/
The new directories were added via:
Code: [Select]
$ vi /opt/.filetool.lst
/usr/local/lib/python2.7/site-packages/pip                      # required for pip persistence https://github.com/SergiSM/R
/usr/local/lib/python2.7/site-packages/pip-20.0.2.dist-info     # required for pip persistence
/usr/local/lib/python2.7/site-packages/wheel                    # required for pip persistence
/usr/local/lib/python2.7/site-packages/wheel-0.34.2.dist-info   # required for pip persistence

Persistence was verified by: rebooting and

Code: [Select]
$ sudo -H pip install requests
$ python import
>>> import requests

« Last Edit: February 26, 2020, 06:23:02 PM by gatorback »
Raspberry Pi Zero W