Missing dependencies Across multiple packages
Published: June 28, 2021 - 3:59 PM
Good morning,
I am facing a problem that I don't understand.
I'm trying to install the following package: apt-esa_snap-8.0.0, here is its setup.py file:
Nothing unusual, but I'm getting this error message:
The only thing I can see is:
min_os_version=Version('10.0.19041'),max_os_version=Version('10.0.19041')
And the park's windows are in 19042.
But I never imposed any restrictions on the versions, so I don't understand...
Do you have any idea?
Thanks in advance,
I am facing a problem that I don't understand.
I'm trying to install the following package: apt-esa_snap-8.0.0, here is its setup.py file:
Code: Select all
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallstring = ['"C:\Program Files\snap\bin\uninstall.exe" -q']
def install():
print('installing esa snap 8.0')
install_exe_if_needed('esa-snap_all_windows-x64_8_0.exe', '-q',accept_returncodes=[0],timeout=300)
Code: Select all
File "C:\Program Files (x86)\wapt\waptservice\service.py", line 1706, in run
self.running_task.run()
File "C:\Program Files (x86)\wapt\waptservice\waptservice_common.py", line 551, in run
self._run()
File "C:\Program Files (x86)\wapt\waptservice\waptservice_common.py", line 1009, in _run
self.result.get('errors',[])))
Exception: Erreur lors de l'installation de [u'4C4C4544-004B-4810-8050-C3C04F395832(=16)']: erreurs dans les paquets [[PackageRequest(package=u'Afrique',architectures=[u'x64'],locales=['fr'],maturities=[u'PROD'],min_os_version=Version('10.0.19041'),max_os_version=Version('10.0.19041')), PackageEntry(u'Afrique',u'27' ), u'Traceback (most recent call last):\n File "C:\\Program Files (x86)\\wapt\\common.py", line 4850, in install\n force=force\n File "C:\\Program Files (x86)\\wapt\\common.py", line 3929, in install_wapt\n raise e\nEWaptUnavailablePackage: Missing dependencies: apt-esa_snap\n'], [PackageRequest(package=u'4C4C4544-004B-4810-8050-C3C04F395832',version=(Version('16.0.0.0'), None),architectures=[u'x64'],locales=['fr'],maturities=[u'PROD'],min_os_version=Version('10.0.19041'),max_os_version=Version('10.0.19041')), PackageEntry(u'4C4C4544-004B-4810-8050-C3C04F395832',u'16' ), u'Traceback (most recent call last):\n File "C:\\Program Files (x86)\\wapt\\common.py", line 4850, in install\n force=force\n File "C:\\Program Files (x86)\\wapt\\common.py", line 3929, in install_wapt\n raise e\nEWaptUnavailablePackage: Missing dependencies: Afrique,apt-esa_snap-8.0\n']]
min_os_version=Version('10.0.19041'),max_os_version=Version('10.0.19041')
And the park's windows are in 19042.
But I never imposed any restrictions on the versions, so I don't understand...
Do you have any idea?
Thanks in advance,