Changes between Initial Version and Version 5 of Ticket #60742
- Timestamp:
- Jun 30, 2020, 4:01:17 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #60742
-
Property
Priority
changed from
High
toNormal
-
Property
Status
changed from
new
toassigned
- Property Port geda-gaf added
- Property Owner set to markemer
-
Property
Priority
changed from
-
Ticket #60742 – Description
initial v5 1 1 When launching gsch2pcb with a project file as usual, gnetlist (well, the python2.7 interpreter) complains about not being able to import xorn.guile : 2 2 {{{ 3 3 File "/opt/local/bin/gnetlist", line 46, in <module> 4 4 import xorn.guile … … 7 7 Expected in: flat namespace 8 8 in /opt/local/lib/python2.7/site-packages/xorn/guilemodule.so 9 9 }}} 10 10 This should not happen as guile 2.2 is installed on my system : 11 11 {{{ 12 12 $ port installed | grep guile 13 13 guile @2.2.4_2 (active) 14 14 }}} 15 15 This error can be reproduced easily by just launching gnetlist from the command line : 16 16 {{{ 17 17 $ gnetlist 18 18 Traceback (most recent call last): … … 23 23 Expected in: flat namespace 24 24 in /opt/local/lib/python2.7/site-packages/xorn/guilemodule.so 25 25 }}} 26 26 In case it matters : my system is Catalina version 10.15.5. 27 27