Searched +full:python3 +full:- +full:setuptools (Results 1 – 10 of 10) sorted by relevance
16 python3:17 OpenSUSELeap15: python311-base19 python3-PyYAML:22 python3-devel:23 OpenSUSELeap15: python311-devel25 python3-docutils:28 python3-numpy:31 python3-opencv:34 python3-pillow:37 python3-pip:[all …]
1 #!/usr/bin/env python34 Copyright (c) 2020-2021 John Snow for Red Hat, Inc.7 import setuptools8 from setuptools.command import bdist_egg33 # https://medium.com/@daveshawley/safely-using-setup-cfg-for-metadata-1babbe54c10834 pkg_resources.require('setuptools>=39.2')36 setuptools.setup(cmdclass={'bdist_egg': bdist_egg_guard})
17 2. ``pip3 install --user .`` will install these packages to your user's21 If you append the ``--editable`` or ``-e`` argument to either invocation23 a forwarder ("qemu.egg-link") that points to the source tree. In so33 (It is a shortcut for ``pip3 install -e .[devel]``.)36 <https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/>`_41 --------------------------------------------48 https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH59 so that tools like ``qmp-shell`` are always available via $PATH. To62 ``> PYTHONPATH=~/src/qemu/python python3 -m qemu.qmp.qmp_shell``69 -----------------------[all …]
2 # Docker TriCore cross-compiler target8 # Copyright (c) 2018 Philippe Mathieu-Daudé10 # SPDX-License-Identifier: GPL-2.0-or-later12 FROM docker.io/library/debian:11-slim15 DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \16 DEBIAN_FRONTEND=noninteractive eatmydata apt install -yy \19 ca-certificates \26 libglib2.0-dev \27 libpixman-1-dev \30 ninja-build \[all …]
1 # Docker legacy cross-compiler target (tests and minimal qemu)6 # libc6.1-dev-alpha-cross: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=10544127 # sh4-linux-user: binaries don't run with bookworm compiler9 # As we are targeting check-tcg here we only need minimal qemu12 FROM docker.io/library/debian:11-slim14 # Duplicate deb line as deb-src15 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list18 apt-get update && \19 apt-get install -y eatmydata && \20 eatmydata apt-get dist-upgrade -y && \[all …]
2 # Docker cross-compiler target5 # https://github.com/loongson/build-tools/releases7 FROM docker.io/library/debian:11-slim9 # Duplicate deb line as deb-src10 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list13 apt-get update && \14 apt-get install -y eatmydata && \15 eatmydata apt-get dist-upgrade -y && \16 apt build-dep -yy qemu18 RUN apt-get update && \[all …]
2 # Docker Hexagon cross-compiler target6 # build-deps.8 FROM docker.io/library/debian:11-slim10 # Duplicate deb line as deb-src11 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list12 RUN apt-get update && \13 DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \16 apt-get install -y --no-install-recommends \19 xz-utils \20 ca-certificates \[all …]
2 # Docker all cross-compiler target (tests only)7 # to build and run linux-user tests on GitLab9 FROM docker.io/library/debian:12-slim11 # Duplicate deb line as deb-src12 RUN sed -in "s/Types: deb/Types: deb deb-src/g" /etc/apt/sources.list.d/debian.sources15 apt-get update && \16 apt-get install -y eatmydata && \17 eatmydata apt-get dist-upgrade -y && \18 apt build-dep -yy qemu22 apt install -y --no-install-recommends \[all …]
1 # THIS FILE WAS AUTO-GENERATED3 # $ lcitool dockerfile --layers all opensuse-leap-15 qemu5 # https://gitlab.com/libvirt/libvirt-ci9 RUN zypper update -y && \10 …zypper addrepo -fc https://download.opensuse.org/update/leap/15.6/backports/openSUSE:Backports:SLE…11 zypper install -y \12 Mesa-devel \13 alsa-lib-devel \17 brlapi-devel \19 ca-certificates \[all …]
2 mkvenv - QEMU pyvenv bootstrapping utility4 usage: mkvenv [-h] command ...9 -h, --help show this help message and exit15 post-venv initialization19 --------------------------------------------------21 usage: mkvenv create [-h] target27 -h, --help show this help message and exit29 --------------------------------------------------31 usage: mkvenv post_init [-h]34 -h, --help show this help message and exit[all …]