From owner-freebsd-python@FreeBSD.ORG Mon Feb 10 20:07:42 2014 Return-Path: Delivered-To: python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48482774 for ; Mon, 10 Feb 2014 20:07:42 +0000 (UTC) Received: from mail-lb0-x229.google.com (mail-lb0-x229.google.com [IPv6:2a00:1450:4010:c04::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C7F0C1350 for ; Mon, 10 Feb 2014 20:07:41 +0000 (UTC) Received: by mail-lb0-f169.google.com with SMTP id q8so5274012lbi.0 for ; Mon, 10 Feb 2014 12:07:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=2CR5JHUvs1pYo9o4aZLNPnG/s1wfuvSzVpmX16lcSS8=; b=TKo3tM2SEsFvycvBM9nYRzQwEmTGd//tlnQANNI/ql7p/VEuXTxvdbAMhp2ue9H/T7 HhjiFzEA4eLuhoyuFnCi9Ha89KWzabCu4+cARdjwlFSiiVZKyNx2aTxGmM7xHgTEVhbT ri2wDkjEvvKZZ/9ctjVQ1q0xYCoGZHqd4Jr1H2gVBhv5Mve6B43axvcyO3srTNKp7SnW t6dm5i1rd8Nm2q55+xIEBHREd0NIdQ3dj9n0vdnVUtT6gc8CPEpNwcmdk4ayZ+rg1eKk C6CVmMQf4ob6ZmefX8rBaRSa2JVNhNq29h2QHaftc0jCjY73eg+MgKfTQSpwraKmt3II tJ2A== MIME-Version: 1.0 X-Received: by 10.112.64.37 with SMTP id l5mr2722697lbs.49.1392062859070; Mon, 10 Feb 2014 12:07:39 -0800 (PST) Received: by 10.114.5.129 with HTTP; Mon, 10 Feb 2014 12:07:39 -0800 (PST) Date: Mon, 10 Feb 2014 13:07:39 -0700 Message-ID: Subject: python27-2.7.6_2 doesn't have pkg_resources? From: Scott Sturdivant To: python@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Feb 2014 20:07:42 -0000 Hi, With the latest FreeBSD package (2.7.6_2), the pkg_resource module seems to be broken: # pkg info | grep python27 python27-2.7.6_2 Interpreted object-oriented programming language # /usr/local/bin/python2.7 -c 'import pkg_resources' Traceback (most recent call last): File "", line 1, in ImportError: No module named pkg_resources This was not the case on 2.7.6_1: # pkg info | grep python27 python27-2.7.6_1 Interpreted object-oriented programming language # /usr/local/bin/python2.7 -c 'import pkg_resources' # This impact other packages such as py27-virtualenv. If i try to create a virtualenv, it immediately aborts with the error that pkg_resources doesn't exist. Am I doing something wrong? Thanks, Scott