Date: Sat, 28 Jan 2017 08:28:58 -0800 From: Joseph Olatt <joji@centos6.eskimo.com> To: Bernt Hansson <bah@bananmonarki.se> Cc: "freebsd-questions@freebsd.org" <freebsd-questions@FreeBSD.org>, trasz@FreeBSD.org Subject: Re: Need help with python Message-ID: <20170128162858.GA5721@centos6.eskimo.com> In-Reply-To: <d232b911-1236-4c8a-9d2a-cdd55f17a696@bananmonarki.se> References: <d232b911-1236-4c8a-9d2a-cdd55f17a696@bananmonarki.se>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Jan 26, 2017 at 07:57:20PM +0100, Bernt Hansson wrote: > Hello list! > > I'm trying to run this program http://flatcam.org/ it's made in python. > > Got this same error whith py-pycam before it became a port. > So what did the maintainer do with pycam. > > Pycam maintainer cc. > > This error is from flatcam, last line was the same with pycam. > > > python2 FlatCAM.py > Traceback (most recent call last): > File "FlatCAM.py", line 3, in <module> > from FlatCAMApp import App > File > "/usr/home/bernt/nerladdningar/vebb/FlatCAM-8.5/FlatCAMApp.py", line > 22, in <module> > from ObjectCollection import * > File > "/usr/home/bernt/nerladdningar/vebb/FlatCAM-8.5/ObjectCollection.py", > line 2, in <module> > from FlatCAMObj import * > File > "/usr/home/bernt/nerladdningar/vebb/FlatCAM-8.5/FlatCAMObj.py", line > 7, in <module> > from camlib import * > File "/usr/home/bernt/nerladdningar/vebb/FlatCAM-8.5/camlib.py", > line 13, in <module> > from numpy import arctan2, Inf, array, sqrt, pi, ceil, sin, cos, > dot, float32, \ > File "/usr/local/lib/python2.7/site-packages/numpy/__init__.py", > line 142, in <module> > from . import add_newdocs > File > "/usr/local/lib/python2.7/site-packages/numpy/add_newdocs.py", line > 13, in <module> > from numpy.lib import add_newdoc > File > "/usr/local/lib/python2.7/site-packages/numpy/lib/__init__.py", line > 8, in <module> > from .type_check import * > File > "/usr/local/lib/python2.7/site-packages/numpy/lib/type_check.py", > line 11, in <module> > import numpy.core.numeric as _nx > File > "/usr/local/lib/python2.7/site-packages/numpy/core/__init__.py", > line 14, in <module> > from . import multiarray > ImportError: /lib/libgcc_s.so.1: version GCC_4.6.0 required by > /usr/local/lib/gcc49/libgfortran.so.3 not found It looks like this port/pkg is looking for GCC_4.9.0. You seem to have GCC 4.6.0 installed on your system. My guess is that /usr/local/lib/gcc49/libgfortran.so.3 would be found if that is installed.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20170128162858.GA5721>