From owner-freebsd-questions@freebsd.org Sat Jan 28 16:32:26 2017 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B461CCC56EA for ; Sat, 28 Jan 2017 16:32:26 +0000 (UTC) (envelope-from joji@eskimo.com) Received: from mail.eskimo.com (mail.eskimo.com [204.122.16.4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A263C125B; Sat, 28 Jan 2017 16:32:26 +0000 (UTC) (envelope-from joji@eskimo.com) Received: from shellx.eskimo.com (centos6.eskimo.com [204.122.16.16]) by mail.eskimo.com (Postfix) with ESMTP id A511D887; Sat, 28 Jan 2017 08:28:58 -0800 (PST) Received: by shellx.eskimo.com (Postfix, from userid 51518) id 89BC1344CFC; Sat, 28 Jan 2017 08:28:58 -0800 (PST) Date: Sat, 28 Jan 2017 08:28:58 -0800 From: Joseph Olatt To: Bernt Hansson Cc: "freebsd-questions@freebsd.org" , trasz@FreeBSD.org Subject: Re: Need help with python Message-ID: <20170128162858.GA5721@centos6.eskimo.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-12-10) X-Virus-Scanned: clamav-milter 0.99.2 at mail.eskimo.com X-Virus-Status: Clean X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jan 2017 16:32:26 -0000 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 > from FlatCAMApp import App > File > "/usr/home/bernt/nerladdningar/vebb/FlatCAM-8.5/FlatCAMApp.py", line > 22, in > from ObjectCollection import * > File > "/usr/home/bernt/nerladdningar/vebb/FlatCAM-8.5/ObjectCollection.py", > line 2, in > from FlatCAMObj import * > File > "/usr/home/bernt/nerladdningar/vebb/FlatCAM-8.5/FlatCAMObj.py", line > 7, in > from camlib import * > File "/usr/home/bernt/nerladdningar/vebb/FlatCAM-8.5/camlib.py", > line 13, in > 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 > from . import add_newdocs > File > "/usr/local/lib/python2.7/site-packages/numpy/add_newdocs.py", line > 13, in > from numpy.lib import add_newdoc > File > "/usr/local/lib/python2.7/site-packages/numpy/lib/__init__.py", line > 8, in > from .type_check import * > File > "/usr/local/lib/python2.7/site-packages/numpy/lib/type_check.py", > line 11, in > import numpy.core.numeric as _nx > File > "/usr/local/lib/python2.7/site-packages/numpy/core/__init__.py", > line 14, in > 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.