This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM5728: Python pip install <library>

Part Number: AM5728

Hi can someone help me how do I run my Python face recognition file on AM5728 board.
My Python file is running good in my Linux PC, I need to run the same file on AM5728 board.
Can you please guide me for this , I need to install even dlib library through pip on the board for my program to get executed.

  • Hello jahnavi,

    On the AM5728 platform, you can use the same pipe install commands that are used on any other platform.

    To make the pip work, copy the attached getpass.py in /usr/lib/python2.7/.

    To install the dlib.
    root@am57xx-evm:~# easy_install pip
    root@am57xx-evm:~# pip install multiprocessing
    root@am57xx-evm:~# pip install dlib

    If your are behind proxy server. Enter these settings.

    root@am57xx-evm:~# export http_proxy=http://<username>:<password>@<ip address>:<port>/
    root@am57xx-evm:~# export https_proxy=http://<username>:<password>@<ip address>:<port>/

    getpass.py
    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    """Utilities to get a password and/or the current user name.
    getpass(prompt[, stream]) - Prompt for a password, with echo turned off.
    getuser() - Get the user name from the environment or password database.
    GetPassWarning - This UserWarning is issued when getpass() cannot prevent
    echoing of the password contents while reading.
    On Windows, the msvcrt module will be used.
    On the Mac EasyDialogs.AskPassword is used, if available.
    """
    # Authors: Piers Lauder (original)
    # Guido van Rossum (Windows support and cleanup)
    # Gregory P. Smith (tty support & GetPassWarning)
    import os, sys, warnings
    __all__ = ["getpass","getuser","GetPassWarning"]
    class GetPassWarning(UserWarning): pass
    def unix_getpass(prompt='Password: ', stream=None):
    """Prompt for a password, with echo turned off.
    Args:
    prompt: Written on stream to ask for the input. Default: 'Password: '
    stream: A writable file object to display the prompt. Defaults to
    the tty. If no tty is available defaults to sys.stderr.
    Returns:
    The seKr3t input.
    Raises:
    EOFError: If our input tty or stdin was closed.
    GetPassWarning: When we were unable to turn echo off on the input.
    Always restores terminal settings before returning.
    """
    fd = None
    tty = None
    try:
    # Always try reading and writing directly on the tty first.
    fd = os.open('/dev/tty', os.O_RDWR|os.O_NOCTTY)
    tty = os.fdopen(fd, 'w+', 1)
    input = tty
    if not stream:
    stream = tty
    except EnvironmentError, e:
    # If that fails, see if stdin can be controlled.
    try:
    fd = sys.stdin.fileno()
    except (AttributeError, ValueError):
    passwd = fallback_getpass(prompt, stream)
    input = sys.stdin
    if not stream:
    stream = sys.stderr
    if fd is not None:
    passwd = None
    try:
    old = termios.tcgetattr(fd) # a copy to save
    new = old[:]
    new[3] &= ~termios.ECHO # 3 == 'lflags'
    tcsetattr_flags = termios.TCSAFLUSH
    if hasattr(termios, 'TCSASOFT'):
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX


    Best regards,
    Kemal