From owner-freebsd-questions@FreeBSD.ORG Mon Mar 16 21:29:35 2015 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C13AB178 for ; Mon, 16 Mar 2015 21:29:35 +0000 (UTC) Received: from mail-ie0-x22b.google.com (mail-ie0-x22b.google.com [IPv6:2607:f8b0:4001:c03::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 83D249EF for ; Mon, 16 Mar 2015 21:29:35 +0000 (UTC) Received: by iegc3 with SMTP id c3so186200301ieg.3 for ; Mon, 16 Mar 2015 14:29:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=88GO+w8EioW4U/8yV2uC/JiQdQ+4T9KyH9dEHT8zSSo=; b=x9toOhuHdSHB/HLgMehNSkQJSlgktKG9ULT7F6rCAP+QiPcpeOHJGrShuH+wIg844D 8OWc+ZaGQmM0nqpnYxPK7FAMbg3ZgBz5b5pxLmjW8ykvUyaY3gA1UztK15baadWpjkcL oT8wVKupZ4oMVTSnYdii9xVtj5Uj5vBG1x7vt0Wz4YeZt8j3WQtJpdHal1KpuzY95Q4Z 8P2UOWUabExTHpF+vDUDrXpYe4QgXPxJW2tWXYx6Cxq6Ks5imvZFr1O1p7XvhiK0odSB pj0CwbjTPbtsDnp8yk894wN9bg9lTfiScndUqOgQwKPZyQQFX71Xk3MyB0eKV9agxf3Q FUWg== X-Received: by 10.50.79.230 with SMTP id m6mr112087427igx.33.1426541374863; Mon, 16 Mar 2015 14:29:34 -0700 (PDT) Received: from [192.168.0.115] ([66.11.161.139]) by mx.google.com with ESMTPSA id v13sm2916621igd.14.2015.03.16.14.29.33 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 16 Mar 2015 14:29:33 -0700 (PDT) Message-ID: <55074B37.6050800@gmail.com> Date: Mon, 16 Mar 2015 17:29:27 -0400 From: Manas Bhatnagar User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: What does this error mean. Python and GCC References: <55074389.8040300@bananmonarki.se> In-Reply-To: <55074389.8040300@bananmonarki.se> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Mar 2015 21:29:35 -0000 I think you don't have the gcc 4.6.0 library. It's looking in /lib/ so perhaps this was supposed to have been installed with the base? not really sure but those are my ideas. On 16-Mar-15 4:56 PM, Bernt Hansson wrote: > Hello list! > > Trying to get flatcam to run on > FreeBSD 9.3-RELEASE #0 r278921 > > Python-2.7 > > When running; python FlatCAM.py it errors out with this. > > python FlatCAM.py > Traceback (most recent call last): > File "FlatCAM.py", line 3, in > from FlatCAMApp import App > File > "/usr/home/bernt/vebbnerladdningar/FlatCAM-8.3/FlatCAM-8.3/FlatCAMApp.py", > line 18, in > from ObjectCollection import * > File > "/usr/home/bernt/vebbnerladdningar/FlatCAM-8.3/FlatCAM-8.3/ObjectCollection.py", > line 2, in > from FlatCAMObj import * > File > "/usr/home/bernt/vebbnerladdningar/FlatCAM-8.3/FlatCAM-8.3/FlatCAMObj.py", > line 5, in > from camlib import * > File > "/usr/home/bernt/vebbnerladdningar/FlatCAM-8.3/FlatCAM-8.3/camlib.py", > line 12, 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 > 170, 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 18, in > from .polynomial import * > File "/usr/local/lib/python2.7/site-packages/numpy/lib/polynomial.py", > line 19, in > from numpy.linalg import eigvals, lstsq, inv > File > "/usr/local/lib/python2.7/site-packages/numpy/linalg/__init__.py", line > 51, in > from .linalg import * > File "/usr/local/lib/python2.7/site-packages/numpy/linalg/linalg.py", > line 29, in > from numpy.linalg import lapack_lite, _umath_linalg > ImportError: /lib/libgcc_s.so.1: version GCC_4.6.0 required by > /usr/local/lib/gcc48/libgfortran.so.3 not found > > What does it mean, is it meaningful for any of you? > > Flatcam is here http://www.flatcam.org/ > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org"