How To Use an External Docker Image as a Base Image in Domino

Follow

Comments

1 comment

  • Permanently deleted user

    If you have trouble installing pip, and lsb_release -a shows that you are using Ubuntu 20.04, then follow the instructions here: https://stackoverflow.com/questions/61981156/unable-to-locate-package-python-pip-ubuntu-20-04

    Specifically, from user Expired Brain, try this:

    Pip for Python 2 is not included in the Ubuntu 20.04 repositories.

    You need to install pip for Python 2 using the get-pip.py script.

    1. Start by enabling the universe repository:

    sudo add-apt-repository universe
    

    2. Update the packages index and install Python 2:

    sudo apt update 
    sudo apt install python2
    

    3. Use curl to download the get-pip.py script:

    curl https://bootstrap.pypa.io/get-pip.py --output get-pip.py
    

    4. Once the repository is enabled, run the script as sudo user with python2 to install pip :

    sudo python2 get-pip.py
    


    Submitted by: katie.shakman

    0
    Comment actions Permalink

Please sign in to leave a comment.