Path: csiph.com!news.mixmin.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'url:pypi': 0.03; 'python3': 0.05; 'extracted': 0.07; 'cc:addr:python-list': 0.09; 'subject:module': 0.09; 'python': 0.10; 'subject:error': 0.11; '"python': 0.16; '(either': 0.16; 'folder.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'received:mail-ig0-x22a.google.com': 0.16; 'subject:import': 0.16; 'url:gz': 0.16; 'url:packages': 0.16; 'url:tar': 0.16; 'wrote:': 0.16; 'laura': 0.18; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'aug': 0.20; 'first,': 0.20; 'preferred': 0.20; 'am,': 0.23; 'tried': 0.24; 'downloaded': 0.24; 'header:In-Reply-To:1': 0.24; 'mon,': 0.24; 'install': 0.25; "doesn't": 0.26; 'installed': 0.26; 'chris': 0.26; 'message- id:@mail.gmail.com': 0.27; 'said,': 0.27; '(maybe': 0.29; 'for,': 0.29; 'url:python': 0.33; 'ubuntu': 0.33; 'case,': 0.34; 'received:google.com': 0.35; 'attempt': 0.35; 'but': 0.36; 'url:org': 0.36; 'monday,': 0.36; 'subject:" ': 0.36; 'url:source': 0.36; 'pm,': 0.36; 'two': 0.37; 'link.': 0.37; 'things': 0.38; "didn't": 0.39; 'still': 0.40; 'different': 0.63; 'url:0': 0.63; 'august': 0.75; 'click': 0.76; 'apt-get': 0.84; 'chrisa': 0.84; 'pip': 0.84; 'url:k': 0.84; 'utc+5:30,': 0.84; 'to:none': 0.91; 'hassle': 0.91 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:cc :content-type:content-transfer-encoding; bh=oUV72oKhdF/urjpvmrNQlx77ngQ9r+pR5ReIKKsVFKg=; b=rWnhN/JoFmNf0MacRPPnHjDVmiCaywDpFO6/ak78C6b+MbH3Amm/cZp+g+expNvCtH jzfpO4BR8HESCeKUzIqvoUJKzcE7xQHoU2zb3Bptn3sNVqWojJxyY2SBTIUwprZffdU+ MggRqSul4X7o/b64xzwPty4d8OZeQswgvsDys4X1IfQsvF5wUg4+Ss5oAW/IRtbeU12b IvMp7+hIq96Aom7EiD3gFJDFkka3FS4G2NXCWPhEdV1Y/XUmUIkccUyRcL5gI5UAyhWD SBJQUVLrcHFWcKPbrAYa8NlvIBEOH9FqATJPM6cAtYpPqV45jNmhlV3TtB/sahfxAYMb zd0Q== MIME-Version: 1.0 X-Received: by 10.50.136.134 with SMTP id qa6mr13863738igb.13.1439780386021; Sun, 16 Aug 2015 19:59:46 -0700 (PDT) In-Reply-To: References: Date: Mon, 17 Aug 2015 12:59:45 +1000 Subject: Re: "no module named kivy" import error in ubuntu 14.04 From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 26 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1439780388 news.xs4all.nl 2869 [2001:888:2000:d::a6]:54923 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:95422 On Mon, Aug 17, 2015 at 12:51 PM, Rustom Mody wrote= : > On Monday, August 17, 2015 at 7:30:14 AM UTC+5:30, Chris Angelico wrote: >> On Mon, Aug 17, 2015 at 5:16 AM, shiva upreti wrote: >> > I am new to linux. I tried various things in attempt to install kivy. = I installed python 2.7.10 (I think python3 was already installed in ubuntu = 14.04). Then i downloaded kivy from https://pypi.python.org/packages/source= /K/Kivy/Kivy-1.9.0.tar.gz, extracted it and tried to execute "python setup.= py" inside the kivy folder. >> >> As Laura said, the preferred way to install under Ubuntu would be to >> use apt-get. But if you want to install directly from PyPI, the best >> way is to use pip. Those are two package managers, which remove from >> you the hassle of hunting down all the different dependencies, like >> Cython. Try apt-get first, and if that doesn't do what you're looking >> for, use pip (maybe inside a virtualenv). It'll chug for a while and >> then give you what you need. > > Its not vanilla apt-get but ppa-apt-get (as Laura's link indicates) I didn't actually click the link. But it's still apt-get, just with an additional repository. In any case, it's way better to use a package manager (either system-provided or Python-provided) than to do everything manually. ChrisA