Searched full:pip (Results 1 – 25 of 62) sorted by relevance
123
/Zephyr-latest/.github/workflows/ |
D | devicetree_checks.yml | 38 - name: cache-pip-linux 42 path: ~/.cache/pip 43 key: ${{ runner.os }}-pip-${{ matrix.python-version }} 45 ${{ runner.os }}-pip-${{ matrix.python-version }} 46 - name: cache-pip-mac 50 path: ~/Library/Caches/pip 52 key: ${{ runner.os }}-pip-${{ matrix.python-version }}- 54 ${{ runner.os }}-pip-${{ matrix.python-version }}- 55 - name: cache-pip-win 59 path: ~\AppData\Local\pip\Cache [all …]
|
D | west_cmds.yml | 41 - name: cache-pip-linux 45 path: ~/.cache/pip 46 key: ${{ runner.os }}-pip-${{ matrix.python-version }} 48 ${{ runner.os }}-pip-${{ matrix.python-version }} 49 - name: cache-pip-mac 53 path: ~/Library/Caches/pip 55 key: ${{ runner.os }}-pip-${{ matrix.python-version }}- 57 ${{ runner.os }}-pip-${{ matrix.python-version }}- 58 - name: cache-pip-win 62 path: ~\AppData\Local\pip\Cache [all …]
|
D | doc-build.yml | 18 # so we fetch that through pip. 76 sudo apt-get install -y wget python3-pip git ninja-build graphviz lcov 103 - name: cache-pip 106 path: ~/.cache/pip 107 key: pip-${{ hashFiles('doc/requirements.txt') }} 109 - name: install-pip 111 pip install -r doc/requirements.txt 112 pip install west==${WEST_VERSION} 113 pip install cmake==${CMAKE_VERSION} 114 pip install coverxygen [all …]
|
D | pylib_tests.yml | 37 - name: cache-pip-linux 41 path: ~/.cache/pip 42 key: ${{ runner.os }}-pip-${{ matrix.python-version }} 44 ${{ runner.os }}-pip-${{ matrix.python-version }} 47 pip install -r scripts/requirements-base.txt -r scripts/requirements-build-test.txt
|
D | coding_guidelines.yml | 16 - name: cache-pip 19 path: ~/.cache/pip 20 key: ${{ runner.os }}-pip-${{ hashFiles('.github/workflows/coding_guidelines.yml') }} 24 pip install unidiff 25 pip install sh
|
D | twister_tests.yml | 44 - name: cache-pip-linux 48 path: ~/.cache/pip 49 key: ${{ runner.os }}-pip-${{ matrix.python-version }} 51 ${{ runner.os }}-pip-${{ matrix.python-version }} 54 …pip install -r scripts/requirements-base.txt -r scripts/requirements-build-test.txt -r scripts/req…
|
D | scripts_tests.yml | 56 - name: cache-pip-linux 60 path: ~/.cache/pip 61 key: ${{ runner.os }}-pip-${{ matrix.python-version }} 63 ${{ runner.os }}-pip-${{ matrix.python-version }} 67 pip install -r scripts/requirements-base.txt -r scripts/requirements-build-test.txt
|
D | compliance.yml | 48 - name: cache-pip 51 path: ~/.cache/pip 52 key: ${{ runner.os }}-pip-${{ hashFiles('.github/workflows/compliance.yml') }} 56 pip install -r scripts/requirements-compliance.txt 57 pip install west
|
D | daily_test_version.yml | 26 - name: install-pip 28 pip install gitpython
|
D | footprint-tracking.yml | 61 pip install -U gitpython 97 pip install awscli 116 pip install -U elasticsearch
|
D | twister_tests_blackbox.yml | 63 python3 -m pip install --user virtualenv 70 …python3 -m pip install -U -r scripts/requirements-base.txt -r scripts/requirements-build-test.txt …
|
D | stats_merged_prs.yml | 23 pip install pygithub elasticsearch
|
D | backport_issue_check.yml | 28 pip install -U pygithub
|
D | manifest.yml | 23 pip install west
|
D | assigner.yml | 27 pip install -U PyGithub>=1.55 west
|
D | codecov.yaml | 104 pip install gcovr==6.0 185 pip install gcovr==6.0 201 pip install xlsxwriter ijson
|
/Zephyr-latest/scripts/west_commands/ |
D | packages.py | 73 "pip", 74 help="manage pip packages", 78 Manage pip packages: 80 Run 'west packages pip' to print all requirement files needed by 91 help="Install pip requirements instead of listing them. " 92 "A single 'pip install' command is built and executed. " 93 "Additional pip arguments can be passed after a -- separator " 94 "from the original 'west packages pip --install' command. For example pass " 95 "'--dry-run' to pip not to actually install anything, but print what would be.", 118 if args.manager == "pip": [all …]
|
/Zephyr-latest/doc/develop/ |
D | beyond-GSG.rst | 11 .. _python-pip: 13 Python and pip 16 Python 3 and its package manager, pip\ [#pip]_, are used extensively by Zephyr 25 information about pip\ [#pip]_, including `information on -\\-user`_. 29 won't be found. Installing with ``--user`` avoids conflicts between pip 38 On all operating systems, pip's ``-U`` flag installs or updates the package if the 337 .. [#pip] 339 pip is Python's package installer. Its ``install`` command first tries to 341 If that is not possible, ``pip install`` downloads them from the Python 363 https://docs.brew.sh/Homebrew-and-Python#note-on-pip-install---user
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/ |
D | .gitignore | 20 pip-wheel-metadata/
|
/Zephyr-latest/cmake/modules/ |
D | west.cmake | 54 ${PYTHON_EXECUTABLE} -m pip install west\ 71 ${PYTHON_EXECUTABLE} -m pip install --upgrade west\
|
/Zephyr-latest/scripts/tests/twister_blackbox/ |
D | test_addon.py | 192 # It installs and uninstalls pytest-twister-harness using pip 193 # It uses pip to check whether that plugin is previously installed 201 ' `pip uninstall pytest-twister-harness` and' 219 check_installed_command = [sys.executable, '-m', 'pip', 'list'] 220 install_command = [sys.executable, '-m', 'pip', 'install', '--no-input', pth_path] 221 uninstall_command = [sys.executable, '-m', 'pip', 'uninstall', '--yes',
|
/Zephyr-latest/doc/develop/getting_started/ |
D | index.rst | 95 python3-dev python3-pip python3-setuptools python3-tk python3-wheel xz-utils file \ 139 execute ``python`` and ``pip`` as well ``python3`` and ``pip3``. 250 pip install west 273 west packages pip --install 302 pip install west 325 west packages pip --install 357 pip install west 380 west packages pip --install
|
/Zephyr-latest/tests/kernel/timer/timer_behavior/ |
D | README | 84 One can install them with pip (possibly in some virtual environment): 86 pip install -r pytest/requirements-saleae.txt
|
/Zephyr-latest/subsys/net/lib/lwm2m/ |
D | README_lwm2m | 19 pip install --upgrade zcbor
|
/Zephyr-latest/scripts/tests/twister/ |
D | README.md | 12 pip install -r $ZEPHYR_BASE/scripts/requirements-build-test.txt
|
123