Ich versuche seit mehreren Tagen eine lauffähige phyghtmap-Installation hinzubekommen.
BS: Windows 10 64bit
Python-Versionen habe ich probiert: 2.7.9, 2.7.15, 3.5, 3.7.2.
phyghtmap-Versionen: 1.8.0(für die 2erpy) 2.2.1(für die 3erpy)
Nach Installation fehlender sonstiger Pakete wie. matplotlib(2.2.3 / 3.0.2)
als Einzelinstallation via PIP und zu guter letzt auch als Wheel von https://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib
wie hier https://wiki.openstreetmap.org…ap_on_Python_3_in_Windows
erwähnt.
In der Kombi Python 3. mit phyghtmap-2.21 erhalte ich bei einem simplen Aufruf von phyghtmap --help schon nur
Code
Traceback (most recent call last):
File "d:\Programmiertools\Python\Scripts\phyghtmap-script.py", line 11, in <module>
load_entry_point('phyghtmap==2.21', 'console_scripts', 'phyghtmap')()
File "D:\Programmiertools\Python\lib\site-packages\pkg_resources\__init__.py", line 487, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "D:\Programmiertools\Python\lib\site-packages\pkg_resources\__init__.py", line 2728, in load_entry_point
return ep.load()
File "D:\Programmiertools\Python\lib\site-packages\pkg_resources\__init__.py", line 2346, in load
return self.resolve()
File "D:\Programmiertools\Python\lib\site-packages\pkg_resources\__init__.py", line 2352, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 668, in _load_unlocked
File "<frozen importlib._bootstrap>", line 638, in _load_backward_compatible
File "D:\Programmiertools\Python\lib\site-packages\phyghtmap-2.21-py3.7.egg\phyghtmap\main.py", line 26, in <module>
File "D:\Programmiertools\Python\lib\ntpath.py", line 76, in join
path = os.fspath(path)
TypeError: expected str, bytes or os.PathLike object, not NoneType
Alles anzeigen
In Verbindung mit phyghtmap-2.0 ergibt sich folgende Fehlermeldung
Code
Traceback (most recent call last):
File "D:\Programmiertools\Python\Scripts\phyghtmap-script.py", line 11, in <module>
load_entry_point('phyghtmap==2.0', 'console_scripts', 'phyghtmap')()
File "D:\Programmiertools\Python\lib\site-packages\pkg_resources\__init__.py", line 487, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "D:\Programmiertools\Python\lib\site-packages\pkg_resources\__init__.py", line 2728, in load_entry_point
return ep.load()
File "D:\Programmiertools\Python\lib\site-packages\pkg_resources\__init__.py", line 2346, in load
return self.resolve()
File "D:\Programmiertools\Python\lib\site-packages\pkg_resources\__init__.py", line 2352, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "D:\Programmiertools\Python\lib\site-packages\phyghtmap-2.0-py3.7.egg\phyghtmap\main.py", line 17, in <module>
File "D:\Programmiertools\Python\lib\site-packages\phyghtmap-2.0-py3.7.egg\phyghtmap\hgt.py", line 10, in <module>
ImportError: cannot import name '_cntr' from 'matplotlib' (D:\Programmiertools\Python\lib\site-packages\matplotlib\__init__.py)
Alles anzeigen
Kennt einer eine funktionierende Kombi?