Package: python3-pip
Version: 23.0.1+dfsg-1
X-Debbugs-Cc: [email protected]
The man page tells users not to include a scheme:// on the proxy
setting, while the help pages require it:
===8<----------------------------------------
$ python3 -m pip --help | grep proxy
--proxy <proxy> Specify a proxy in the form
scheme://[user:passwd@]proxy.server:port.
$ man pip3 | grep proxy
--proxy <proxy>
Specify a proxy in the form [user:passwd@]proxy.server:port.
===8<----------------------------------------
(it’s the same inconsistency for pip, btw)
I did not keep a copy of the command that was executed but it was
something like this with the omitted scheme:
$ pip3 --proxy 127.0.0.1:8118 --log-file '$logfile1" --log "$logfile2"
argostranslate
The detailed log file prints:
“ERROR: Could not install packages due to an EnvironmentError:
Proxy URL had no scheme, should start with http:// or https://”
but then it presses ahead anyway. Yikes!
There should have been a syntax check as a very first task, and as
soon as something fails that check, it should terminate with an
error. This is actually a security issue because proxies are sometimes
used for confidentiality purposes.
===8<----------------------------------------
2022-04-21T21:33:39,656 Using pip 20.3.4 from
/usr/lib/python3/dist-packages/pip (python 3.9)
2022-04-21T21:33:39,661 Non-user install because site-packages writeable
2022-04-21T21:33:39,814 Created temporary directory:
/tmp/pip-ephem-wheel-cache-20ytbstg
2022-04-21T21:33:39,815 Created temporary directory:
/tmp/pip-req-tracker-byaf3m_3
2022-04-21T21:33:39,816 Initialized build tracking at
/tmp/pip-req-tracker-byaf3m_3
2022-04-21T21:33:39,816 Created build tracker: /tmp/pip-req-tracker-byaf3m_3
2022-04-21T21:33:39,816 Entered build tracker: /tmp/pip-req-tracker-byaf3m_3
2022-04-21T21:33:39,816 Created temporary directory: /tmp/pip-install-mtsrwt9e
2022-04-21T21:33:39,834 1 location(s) to search for versions of
argostranslategui:
2022-04-21T21:33:39,834 * https://pypi.org/simple/argostranslategui/
2022-04-21T21:33:39,835 Fetching project page and analyzing links:
https://pypi.org/simple/argostranslategui/
2022-04-21T21:33:39,835 Getting page https://pypi.org/simple/argostranslategui/
2022-04-21T21:33:39,836 Found index url https://pypi.org/simple
2022-04-21T21:33:39,838 Looking up "https://pypi.org/simple/argostranslategui/"
in the cache
2022-04-21T21:33:39,838 Request header has "max_age" as 0, cache bypassed
2022-04-21T21:33:39,838 ERROR: Could not install packages due to an
EnvironmentError: Proxy URL had no scheme, should start with http:// or https://
2022-04-21T21:33:39,839 Removed build tracker: '/tmp/pip-req-tracker-byaf3m_3'
2022-04-21T21:33:59,899 Using pip 20.3.4 from
/usr/lib/python3/dist-packages/pip (python 3.9)
2022-04-21T21:33:59,901 Non-user install because site-packages writeable
2022-04-21T21:34:00,029 Created temporary directory:
/tmp/pip-ephem-wheel-cache-51z4eis3
2022-04-21T21:34:00,030 Created temporary directory:
/tmp/pip-req-tracker-8knmidku
2022-04-21T21:34:00,030 Initialized build tracking at
/tmp/pip-req-tracker-8knmidku
2022-04-21T21:34:00,030 Created build tracker: /tmp/pip-req-tracker-8knmidku
2022-04-21T21:34:00,030 Entered build tracker: /tmp/pip-req-tracker-8knmidku
2022-04-21T21:34:00,031 Created temporary directory: /tmp/pip-install-s4xagkiz
2022-04-21T21:34:00,043 1 location(s) to search for versions of
argostranslategui:
2022-04-21T21:34:00,043 * https://pypi.org/simple/argostranslategui/
2022-04-21T21:34:00,043 Fetching project page and analyzing links:
https://pypi.org/simple/argostranslategui/
2022-04-21T21:34:00,044 Getting page https://pypi.org/simple/argostranslategui/
2022-04-21T21:34:00,045 Found index url https://pypi.org/simple
2022-04-21T21:34:00,046 Looking up "https://pypi.org/simple/argostranslategui/"
in the cache
2022-04-21T21:34:00,046 Request header has "max_age" as 0, cache bypassed
2022-04-21T21:34:00,047 Starting new HTTPS connection (1): pypi.org:443
2022-04-21T21:34:00,065 ERROR: Exception:
2022-04-21T21:34:00,065 Traceback (most recent call last):
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/resolvelib-0.5.4-py2.py3-none-any.whl/resolvelib/resolvers.py",
line 171, in _merge_into_criterion
2022-04-21T21:34:00,065 crit = self.state.criteria[name]
2022-04-21T21:34:00,065 KeyError: 'argostranslategui'
2022-04-21T21:34:00,065
2022-04-21T21:34:00,065 During handling of the above exception, another
exception occurred:
2022-04-21T21:34:00,065
2022-04-21T21:34:00,065 Traceback (most recent call last):
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/cli/base_command.py", line 223,
in _main
2022-04-21T21:34:00,065 status = self.run(options, args)
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/cli/req_command.py", line 180, in
wrapper
2022-04-21T21:34:00,065 return func(self, options, args)
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/commands/install.py", line 346,
in run
2022-04-21T21:34:00,065 requirement_set = resolver.resolve(
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/resolution/resolvelib/resolver.py",
line 122, in resolve
2022-04-21T21:34:00,065 self._result = resolver.resolve(
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/resolvelib-0.5.4-py2.py3-none-any.whl/resolvelib/resolvers.py",
line 453, in resolve
2022-04-21T21:34:00,065 state = resolution.resolve(requirements,
max_rounds=max_rounds)
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/resolvelib-0.5.4-py2.py3-none-any.whl/resolvelib/resolvers.py",
line 318, in resolve
2022-04-21T21:34:00,065 name, crit = self._merge_into_criterion(r,
parent=None)
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/resolvelib-0.5.4-py2.py3-none-any.whl/resolvelib/resolvers.py",
line 173, in _merge_into_criterion
2022-04-21T21:34:00,065 crit = Criterion.from_requirement(self._p,
requirement, parent)
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/resolvelib-0.5.4-py2.py3-none-any.whl/resolvelib/resolvers.py",
line 82, in from_requirement
2022-04-21T21:34:00,065 if not cands:
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/resolvelib-0.5.4-py2.py3-none-any.whl/resolvelib/structs.py",
line 124, in __bool__
2022-04-21T21:34:00,065 return bool(self._sequence)
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/resolution/resolvelib/found_candidates.py",
line 99, in __bool__
2022-04-21T21:34:00,065 return any(self)
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/resolution/resolvelib/factory.py",
line 220, in iter_index_candidates
2022-04-21T21:34:00,065 result = self._finder.find_best_candidate(
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/index/package_finder.py", line
882, in find_best_candidate
2022-04-21T21:34:00,065 candidates = self.find_all_candidates(project_name)
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/index/package_finder.py", line
825, in find_all_candidates
2022-04-21T21:34:00,065 package_links = self.process_project_url(
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/index/package_finder.py", line
789, in process_project_url
2022-04-21T21:34:00,065 html_page =
self._link_collector.fetch_page(project_url)
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/index/collector.py", line 618, in
fetch_page
2022-04-21T21:34:00,065 return _get_html_page(location,
session=self.session)
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/index/collector.py", line 430, in
_get_html_page
2022-04-21T21:34:00,065 resp = _get_html_response(url, session=session)
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/index/collector.py", line 127, in
_get_html_response
2022-04-21T21:34:00,065 resp = session.get(
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/requests-2.25.1-py2.py3-none-any.whl/requests/sessions.py",
line 555, in get
2022-04-21T21:34:00,065 return self.request('GET', url, **kwargs)
2022-04-21T21:34:00,065 File
"/usr/lib/python3/dist-packages/pip/_internal/network/session.py", line 428, in
request
2022-04-21T21:34:00,065 return super(PipSession, self).request(method, url,
*args, **kwargs)
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/requests-2.25.1-py2.py3-none-any.whl/requests/sessions.py",
line 542, in request
2022-04-21T21:34:00,065 resp = self.send(prep, **send_kwargs)
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/requests-2.25.1-py2.py3-none-any.whl/requests/sessions.py",
line 655, in send
2022-04-21T21:34:00,065 r = adapter.send(request, **kwargs)
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/CacheControl-0.12.6-py2.py3-none-any.whl/cachecontrol/adapter.py",
line 53, in send
2022-04-21T21:34:00,065 resp = super(CacheControlAdapter,
self).send(request, **kw)
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/requests-2.25.1-py2.py3-none-any.whl/requests/adapters.py",
line 439, in send
2022-04-21T21:34:00,065 resp = conn.urlopen(
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/urllib3-1.26.5-py2.py3-none-any.whl/urllib3/connectionpool.py",
line 696, in urlopen
2022-04-21T21:34:00,065 self._prepare_proxy(conn)
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/urllib3-1.26.5-py2.py3-none-any.whl/urllib3/connectionpool.py",
line 966, in _prepare_proxy
2022-04-21T21:34:00,065 conn.connect()
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/urllib3-1.26.5-py2.py3-none-any.whl/urllib3/connection.py",
line 359, in connect
2022-04-21T21:34:00,065 conn = self._connect_tls_proxy(hostname, conn)
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/urllib3-1.26.5-py2.py3-none-any.whl/urllib3/connection.py",
line 500, in _connect_tls_proxy
2022-04-21T21:34:00,065 return ssl_wrap_socket(
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/urllib3-1.26.5-py2.py3-none-any.whl/urllib3/util/ssl_.py",
line 453, in ssl_wrap_socket
2022-04-21T21:34:00,065 ssl_sock = _ssl_wrap_socket_impl(sock, context,
tls_in_tls)
2022-04-21T21:34:00,065 File
"/usr/share/python-wheels/urllib3-1.26.5-py2.py3-none-any.whl/urllib3/util/ssl_.py",
line 495, in _ssl_wrap_socket_impl
2022-04-21T21:34:00,065 return ssl_context.wrap_socket(sock)
2022-04-21T21:34:00,065 File "/usr/lib/python3.9/ssl.py", line 500, in
wrap_socket
2022-04-21T21:34:00,065 return self.sslsocket_class._create(
2022-04-21T21:34:00,065 File "/usr/lib/python3.9/ssl.py", line 997, in _create
2022-04-21T21:34:00,065 raise ValueError("check_hostname requires
server_hostname")
2022-04-21T21:34:00,065 ValueError: check_hostname requires server_hostname
2022-04-21T21:34:00,081 Removed build tracker: '/tmp/pip-req-tracker-8knmidku'
2022-04-21T21:35:07,986 Using pip 20.3.4 from
/usr/lib/python3/dist-packages/pip (python 3.9)
2022-04-21T21:35:07,987 Non-user install because site-packages writeable
2022-04-21T21:35:08,135 Created temporary directory:
/tmp/pip-ephem-wheel-cache-c9kp7f8p
2022-04-21T21:35:08,136 Created temporary directory:
/tmp/pip-req-tracker-98xvsbko
2022-04-21T21:35:08,136 Initialized build tracking at
/tmp/pip-req-tracker-98xvsbko
2022-04-21T21:35:08,136 Created build tracker: /tmp/pip-req-tracker-98xvsbko
2022-04-21T21:35:08,136 Entered build tracker: /tmp/pip-req-tracker-98xvsbko
2022-04-21T21:35:08,136 Created temporary directory: /tmp/pip-install-pa1l3kbg
2022-04-21T21:35:08,147 1 location(s) to search for versions of
argostranslategui:
2022-04-21T21:35:08,147 * https://pypi.org/simple/argostranslategui/
2022-04-21T21:35:08,147 Fetching project page and analyzing links:
https://pypi.org/simple/argostranslategui/
2022-04-21T21:35:08,147 Getting page https://pypi.org/simple/argostranslategui/
2022-04-21T21:35:08,148 Found index url https://pypi.org/simple
2022-04-21T21:35:08,149 Looking up "https://pypi.org/simple/argostranslategui/"
in the cache
2022-04-21T21:35:08,149 Request header has "max_age" as 0, cache bypassed
2022-04-21T21:35:08,150 Starting new HTTPS connection (1): pypi.org:443
2022-04-21T21:35:10,088 https://pypi.org:443 "GET /simple/argostranslategui/
HTTP/1.1" 200 990
2022-04-21T21:35:10,091 Updating cache with response from
"https://pypi.org/simple/argostranslategui/"
2022-04-21T21:35:10,091 Caching due to etag
2022-04-21T21:35:10,214 Found link
https://files.pythonhosted.org/packages/c1/bd/cc03728d1fc7b4db943281a41714585e7239540341342b1ab7416213d539/argostranslategui-1.6.0-py3-none-any.whl#sha256=a9b19b6a41883f768ff950ae78c69765c0322eb7ff154f41522807123a805c17
(from https://pypi.org/simple/argostranslategui/), version: 1.6.0
2022-04-21T21:35:10,215 Found link
https://files.pythonhosted.org/packages/1d/fb/bc4346dab2cf637149db5b063cebd9f617b9dbdf50d5be1881abf5c9ffac/argostranslategui-1.6.0.tar.gz#sha256=1b2645987ba0dc0f2378be82f72d83bd00eae2fd1d9b465eac3d0f5d5cdc86a8
(from https://pypi.org/simple/argostranslategui/), version: 1.6.0
2022-04-21T21:35:10,215 Found link
https://files.pythonhosted.org/packages/ff/be/ce1d45b51005a1dcb534ee68381b8b590b10f6f0c87c2aec971123d77694/argostranslategui-1.6.1-py3-none-any.whl#sha256=821ff849da10893845cd2adb07084d9045ddfc143c7c73802f8f1b1da57e91b4
(from https://pypi.org/simple/argostranslategui/), version: 1.6.1
2022-04-21T21:35:10,215 Found link
https://files.pythonhosted.org/packages/db/a9/2f6ab2ae7bbd22b7d906acafa5b0eb36b954cf17035ab4d1ac57c5641c33/argostranslategui-1.6.1.tar.gz#sha256=7c70928137a4c70aba03390bbccc75a029ee5f30bb149e49bfafdc9af140afb3
(from https://pypi.org/simple/argostranslategui/), version: 1.6.1
2022-04-21T21:35:10,215 Found link
https://files.pythonhosted.org/packages/a6/02/bdc94848422f3a1140cf5bf0805a954a0d79feb8da43989e76452098a3e9/argostranslategui-1.6.2-py3-none-any.whl#sha256=fd7b7a6b285ce894d1b15ad9fada6829e4f86c0c3ac78f299d0f9ee67757aee6
(from https://pypi.org/simple/argostranslategui/), version: 1.6.2
2022-04-21T21:35:10,216 Found link
https://files.pythonhosted.org/packages/a9/cd/90760a9e4c58768e5c97790d64962764f655c8c660e447e10ba3de1c9e45/argostranslategui-1.6.2.tar.gz#sha256=6aa9455397e2a2ad5b314483ebd405702b1119ec4c47dff396dc5e3414d1e5b5
(from https://pypi.org/simple/argostranslategui/), version: 1.6.2
2022-04-21T21:35:10,216 Found link
https://files.pythonhosted.org/packages/31/19/366ba6013e8e92b1bfae8da63b43d1808952458d0aadf5385a5654391b8b/argostranslategui-1.6.3-py3-none-any.whl#sha256=ecc38090a753b7c6a8bcba07417b0401401ea8ad6fd178c58437968a8f5cabad
(from https://pypi.org/simple/argostranslategui/), version: 1.6.3
2022-04-21T21:35:10,216 Found link
https://files.pythonhosted.org/packages/ef/2c/6b23c4f70be1289eabe96bb2db0b66ab8c49920ca5eab4b64314f38926c2/argostranslategui-1.6.3.tar.gz#sha256=aa99d198059f4089b9c523d25bc5cc4d76e672918e49aa2c2ddedce7e31a70ac
(from https://pypi.org/simple/argostranslategui/), version: 1.6.3
2022-04-21T21:35:10,217 Given no hashes to check 8 links for project
'argostranslategui': discarding no candidates
2022-04-21T21:35:10,246 Collecting argostranslategui
2022-04-21T21:35:10,247 Created temporary directory: /tmp/pip-unpack-39ixxlyw
2022-04-21T21:35:10,248 Looking up
"https://files.pythonhosted.org/packages/31/19/366ba6013e8e92b1bfae8da63b43d1808952458d0aadf5385a5654391b8b/argostranslategui-1.6.3-py3-none-any.whl"
in the cache
2022-04-21T21:35:10,248 No cache entry available
2022-04-21T21:35:10,248 Starting new HTTPS connection (1):
files.pythonhosted.org:443
2022-04-21T21:35:11,876 https://files.pythonhosted.org:443 "GET
/packages/31/19/366ba6013e8e92b1bfae8da63b43d1808952458d0aadf5385a5654391b8b/argostranslategui-1.6.3-py3-none-any.whl
HTTP/1.1" 200 6658
2022-04-21T21:35:11,877 Downloading argostranslategui-1.6.3-py3-none-any.whl
(6.7 kB)
2022-04-21T21:35:11,994 Ignoring unknown cache-control directive: immutable
2022-04-21T21:35:11,994 Updating cache with response from
"https://files.pythonhosted.org/packages/31/19/366ba6013e8e92b1bfae8da63b43d1808952458d0aadf5385a5654391b8b/argostranslategui-1.6.3-py3-none-any.whl"
2022-04-21T21:35:11,995 Caching due to etag
2022-04-21T21:35:12,006 Added argostranslategui from
https://files.pythonhosted.org/packages/31/19/366ba6013e8e92b1bfae8da63b43d1808952458d0aadf5385a5654391b8b/argostranslategui-1.6.3-py3-none-any.whl#sha256=ecc38090a753b7c6a8bcba07417b0401401ea8ad6fd178c58437968a8f5cabad
to build tracker '/tmp/pip-req-tracker-98xvsbko'
2022-04-21T21:35:12,006 Removed argostranslategui from
https://files.pythonhosted.org/packages/31/19/366ba6013e8e92b1bfae8da63b43d1808952458d0aadf5385a5654391b8b/argostranslategui-1.6.3-py3-none-any.whl#sha256=ecc38090a753b7c6a8bcba07417b0401401ea8ad6fd178c58437968a8f5cabad
from build tracker '/tmp/pip-req-tracker-98xvsbko'
2022-04-21T21:35:12,066 Requirement already satisfied: argostranslate in
/usr/local/lib/python3.9/dist-packages (from argostranslategui) (1.6.1)
2022-04-21T21:35:12,069 1 location(s) to search for versions of pyqt5:
2022-04-21T21:35:12,069 * https://pypi.org/simple/pyqt5/
2022-04-21T21:35:12,069 Fetching project page and analyzing links:
https://pypi.org/simple/pyqt5/
2022-04-21T21:35:12,069 Getting page https://pypi.org/simple/pyqt5/
2022-04-21T21:35:12,071 Found index url https://pypi.org/simple
2022-04-21T21:35:12,072 Looking up "https://pypi.org/simple/pyqt5/" in the cache
2022-04-21T21:35:12,073 Request header has "max_age" as 0, cache bypassed
2022-04-21T21:35:12,579 https://pypi.org:443 "GET /simple/pyqt5/ HTTP/1.1" 200
12340
2022-04-21T21:35:12,686 Updating cache with response from
"https://pypi.org/simple/pyqt5/"
2022-04-21T21:35:12,687 Caching due to etag
2022-04-21T21:35:12,791 Skipping link: none of the wheel's tags match:
cp35-cp35m-macosx_10_6_intel:
https://files.pythonhosted.org/packages/40/f9/0be162881f4bdb6e828ee6db871310140a5278b4538e65716eae8b2d3dbd/PyQt5-5.6-cp35-cp35m-macosx_10_6_intel.whl#sha256=b280a77c27b16a4c05fc4810f31a40039d7bfd6e83cd69c2eb79d4dbe7d29974
(from https://pypi.org/simple/pyqt5/)
2022-04-21T21:35:12,792 Skipping link: none of the wheel's tags match:
cp35-cp35m-manylinux1_x86_64:
https://files.pythonhosted.org/packages/34/a7/ed3a2e7f74a7fcc112c1669968ca1be552f34d123bb4515a97520d69e8f3/PyQt5-5.6-cp35-cp35m-manylinux1_x86_64.whl#sha256=5b3e419dd6579d4aa90ece6aaac69054e9be3dcd90c47ff82b044c3151fdc008
(from https://pypi.org/simple/pyqt5/)
2022-04-21T21:35:12,792 Skipping link: none of the wheel's tags match:
cp35-none-win32:
https://files.pythonhosted.org/packages/cc/eb/f2e115d21abec6d86b2af0b7fa6f71439767d0a91cb393607e4f72998b0a/PyQt5-5.6-cp35-none-win32.whl#sha256=5454b38f2e441dfa1df3e9cee7530c70c2663f6c54ba37ac22adf40b3c49e976
(from https://pypi.org/simple/pyqt5/)
…[snipped]…
2022-04-21T21:40:26,829 Requirement already satisfied: typing-extensions in
/usr/local/lib/python3.9/dist-packages (from
torch>=1.3.0->stanza==1.1.1->argostranslate->argostranslategui) (4.2.0)
2022-04-21T21:40:26,844 Created temporary directory: /tmp/pip-unpack-8rlqsgo1
2022-04-21T21:40:26,982 Installing collected packages: PyQt5-Qt5, PyQt5,
argostranslategui
2022-04-21T21:40:28,822 Attempting uninstall: PyQt5
2022-04-21T21:40:28,823 Found existing installation: PyQt5 5.15.2
2022-04-21T21:40:28,825 Not uninstalling pyqt5 at
/usr/lib/python3/dist-packages, outside environment /usr
2022-04-21T21:40:28,825 Can't uninstall 'PyQt5'. No files were found to
uninstall.
2022-04-21T21:40:29,371 WARNING: The scripts pylupdate5, pyrcc5 and pyuic5
are installed in '/usr/local/bin' which is not on PATH.
2022-04-21T21:40:29,371 Consider adding this directory to PATH or, if you
prefer to suppress this warning, use --no-warn-script-location.
2022-04-21T21:40:29,418 Successfully installed PyQt5-5.15.4 PyQt5-Qt5-5.15.2
argostranslategui-1.6.3
2022-04-21T21:40:29,419 Removed build tracker: '/tmp/pip-req-tracker-98xvsbko'
===8<----------------------------------------
“…[snipped]…” marks a place where a lot of uninteresting output was
removed to keep this report brief. But note at the end it announces
some successful installs despite the faulty proxy parameter.
-- System Information:
Debian Release: 12.5
APT prefers stable-updates
APT policy: (990, 'stable-updates'), (990, 'stable-security'), (990,
'stable'), (500, 'oldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 5.10.0-28-amd64 (SMP w/2 CPU threads)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
Versions of packages python3-pip depends on:
ii ca-certificates 20230311
ii python3 3.11.2-1+b1
ii python3-distutils 3.11.2-3
ii python3-setuptools 66.1.1-1
ii python3-wheel 0.38.4-2
Versions of packages python3-pip recommends:
ii build-essential 12.9
ii python3-dev 3.11.2-1+b1
python3-pip suggests no packages.
-- no debconf information