Path: csiph.com!usenet.pasdenom.info!news.albasani.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!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.037 X-Spam-Evidence: '*H*': 0.93; '*S*': 0.00; 'tutorial': 0.03; 'subject:Django': 0.03; "'python": 0.09; 'subject:create': 0.09; 'subject:trying': 0.09; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'importerror': 0.16; 'subject: \n ': 0.16; 'subject:when': 0.16; 'wrote:': 0.18; 'thu,': 0.19; 'saying': 0.22; 'this?': 0.23; 'subject:problem': 0.24; 'possibly': 0.26; 'header:In-Reply-To:1': 0.27; 'words': 0.29; 'message- id:@mail.gmail.com': 0.30; "i'm": 0.30; 'code': 0.31; "skip:' 10": 0.31; '25,': 0.31; 'figure': 0.32; 'run': 0.32; 'another': 0.32; 'linux': 0.33; 'everyone': 0.33; 'subject:with': 0.35; "can't": 0.35; 'something': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'google': 0.35; 'module.': 0.36; 'project': 0.37; 'subject:new': 0.38; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'called': 0.40; 'how': 0.40; 'tell': 0.60; 'high': 0.63; 'chance': 0.65; 'url:png': 0.68; 'watching': 0.68; 'url:img': 0.74; 'jul': 0.74; 'subject:have': 0.80; 'url:2013': 0.84; 'mistake': 0.91; '2013': 0.98 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 :content-type; bh=iAmbPmlIW92cunLGyqRp5ZGAqcz+88CylQVzB2LGpnY=; b=WFyMAfL7sJBREdJim8kYlHuA0uN3SzdS9fYYBuifwa/E6zvFkfCu/99N6eqtsRxSp8 Bc7bfy+NS5P4C8dOaUqUrtKayXQqY4R4Z5K3+AzQ6okGXETaghXridKBs2QoTy4sengv BCj9qYOWW0HtzVhe5x4mqQb7nq+zIGSbzLOq01m0iGyEpWVhnRPGt6UoH26rdpSFfzbk v+8dqQZu38C3P/OBmw8BCk3Plauwp4uVyq0WD9SunePwu2ZochfBuToyp0fGKtBF3Osr n66OCmf5TrwiARy45swUDYlUPQkLchFoDuEjIN4viArPKQqQJz5O6jM913JsUpwdXpD2 4uqQ== MIME-Version: 1.0 X-Received: by 10.52.178.194 with SMTP id da2mr3356884vdc.28.1374725549163; Wed, 24 Jul 2013 21:12:29 -0700 (PDT) In-Reply-To: <460c20e0-b011-47bb-ad95-c24da160315e@googlegroups.com> References: <460c20e0-b011-47bb-ad95-c24da160315e@googlegroups.com> Date: Thu, 25 Jul 2013 14:12:29 +1000 Subject: Re: I have a little problem with Django when I am trying to create a new app From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 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: 22 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1374725551 news.xs4all.nl 15872 [2001:888:2000:d::a6]:52980 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:51184 On Thu, Jul 25, 2013 at 12:03 PM, wrote: > Hello everyone I'm watching a tutorial on how to create a project on Django... > > django-admin.py startproject carabali > > when I run this code on terminal.. happens : > > > http://nsae01.casimages.net/img/2013/07/25/130725021220676239.png > > > There's a mistake or something but I can't figure out, help me please.... It's saying that it can't find the zlib module. What Linux distribution is this? You may need to 'apt-get install' / 'yum install' / 'pacman -S' another package to make this work - possibly it'll be called 'zlib' or 'python-zlib' or something. I would recommend a Google search for your Linux distribution and the words 'python importerror zlib'; there's a high chance that'll tell you what you need to install. ChrisA