Path: csiph.com!usenet.pasdenom.info!gegeweb.org!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.018 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'subject:error': 0.03; 'environments': 0.07; 'importerror:': 0.07; 'properly.': 0.09; 'cc:addr:python-list': 0.11; '2):': 0.16; 'ah,': 0.16; 'guess.': 0.16; 'help?': 0.16; 'skip:d 110': 0.16; 'subject:import': 0.16; 'symlink': 0.16; 'sat,': 0.16; 'wrote:': 0.18; 'packages.': 0.19; 'feb': 0.22; 'cc:addr:python.org': 0.22; 'errors.': 0.24; 'cc:2**0': 0.24; 'source': 0.25; 'skip:_ 20': 0.27; 'header:In- Reply-To:1': 0.27; 'installed': 0.27; 'tried': 0.27; 'chris': 0.29; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'url:mailman': 0.30; 'gcc': 0.31; 'search.': 0.31; 'worked': 0.33; 'url:python': 0.33; 'actively': 0.33; 'fri,': 0.33; 'mac': 0.33; 'maybe': 0.34; 'received:209.85': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'google': 0.35; 'really': 0.36; 'installing': 0.36; 'url:listinfo': 0.36; 'thanks': 0.36; 'url:org': 0.36; 'virtual': 0.37; 'received:209': 0.37; 'being': 0.38; 'question,': 0.38; 'heard': 0.39; 'url:mail': 0.40; 'even': 0.60; 'problems.': 0.60; 'making': 0.63; 'story': 0.63; 'to:addr:gmail.com': 0.65; 'smith': 0.68; 'day': 0.76; '2015': 0.84; 'hostile': 0.84; 'regret': 0.91; 'before?': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=FsF1GiaGTQp400MwIOwtG+dWG5Z/J1yyM1QQ+o9TUQc=; b=KQ1FN9pFJKUPthP1b6DLvvtRuUy0rqi0Q9YXHdv/gSSNHiSBRprOlOkWtZsM86ieuc LgLRCiUXm1s5VO8DLu7wje4PqdkdS+9zyxjGrWbexWdZ4CLGwEQh3guqea59RVC6eTbJ CjF/0GX75MJArD2Rogq5PA4peRNvxEg/7p8o06NS8UZSy/768Lc+tNkXfP4pjniE1vMW MY/9ejDleLuXv/oOC4VsytK5fejTbOTK5mEUK2zbETrwk9JhSpcYRZpdUyWNTUWg2K07 8JbnM7fgkHF0Ag9tOL8Ycr2p92vaSr2ggVd5/NWJEfPs+zSJBjrfNzHYUeFl/ULSCTMf Ae8g== MIME-Version: 1.0 X-Received: by 10.152.25.165 with SMTP id d5mr4349881lag.43.1423248579399; Fri, 06 Feb 2015 10:49:39 -0800 (PST) In-Reply-To: References: Date: Fri, 6 Feb 2015 10:49:39 -0800 Subject: Re: Matplotlib import error From: C Smith To: Chris Angelico Content-Type: text/plain; charset=UTF-8 Cc: "python-list@python.org" X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 23 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1423248581 news.xs4all.nl 2894 [2001:888:2000:d::a6]:46556 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:85300 On Fri, Feb 6, 2015 at 10:20 AM, Chris Angelico wrote: > On Sat, Feb 7, 2015 at 3:34 AM, C Smith wrote: >> ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/linalg/lapack_lite.so, >> 2): Symbol not found: __gfortran_compare_string > > Ah, installing from source on a Mac and having problems. Have I heard > this story before? Just occasionally? It's almost as if the platform > is actively hostile toward C and Fortran... > > But I found this at the far end of a Google search. Maybe it'll help? > > http://stackoverflow.com/questions/22080154/error-importing-numpy-after-upgrading-with-pip > > ChrisA > -- > https://mail.python.org/mailman/listinfo/python-list I already had gcc installed and had used it to build other packages. It worked in the past when clang was throwing errors. I tried making the symlink from the stackoverflow question, but still get the same errors. I will look around and see if I can find if gcc is even being used by pip properly. I really regret not using virtual environments from day one. Lesson learned the hard way, I guess. Thanks