Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Laura Creighton Newsgroups: comp.lang.python Subject: Re: Packages installing problem Date: Mon, 07 Dec 2015 16:51:19 +0100 Lines: 25 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Trace: news.uni-berlin.de vuvktMFrXlb3sLXeAwtbagLaT2+tJ0gnKNNbkPN59Biw== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.014 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'cc:addr:python-list': 0.09; 'received:openend.se': 0.09; 'received:theraft.openend.se': 0.09; 'python': 0.10; '2.7': 0.13; 'cc:addr:lac': 0.16; 'cc:addr:openend.se': 0.16; 'from:addr:lac': 0.16; 'from:addr:openend.se': 0.16; 'from:name:laura creighton': 0.16; 'message-id:@fido.openend.se': 0.16; 'received:fido': 0.16; 'received:fido.openend.se': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'url:virtualenv': 0.16; 'virtualenv.': 0.16; 'laura': 0.18; '2015': 0.20; 'cc:addr:python.org': 0.20; 'cc:2**1': 0.22; 'subject:problem': 0.22; 'dec': 0.23; 'mon,': 0.24; 'install': 0.25; 'python2.7': 0.29; 'received:se': 0.29; 'cc:no real name:2**1': 0.29; 'url:mailman': 0.30; 'older': 0.32; 'url:python': 0.33; 'url:listinfo': 0.34; 'trouble': 0.35; 'installing': 0.35; 'skip:> 10': 0.35; 'sometimes': 0.35; 'url:org': 0.36; 'url:library': 0.36; 'subject:: ': 0.37; 'charset :us-ascii': 0.37; 'virtual': 0.38; 'url:en': 0.39; 'url:mail': 0.40; 'software': 0.40; 'url:3': 0.60; 'your': 0.60; 'header :Message-Id:1': 0.61; 'here:': 0.63; 'face': 0.64; 'packages,': 0.66; 'header:In-reply-to:1': 0.84; 'sir.': 0.84; 'subject:Packages': 0.84; 'url:readthedocs': 0.84; 'url:latest': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=openend.se; s=default; t=1449503483; bh=ou0FlZ8SgEJhbx5xREr4XCY2G3bcWtkGeuYi+8X5xQA=; h=To:cc:From:Subject:In-reply-to:References:Date:From; b=T4UO2bdCAr77qy6TUfJNir5WZzD5fQ3QNwPyDSIGKLBoA8F+2HLUjLe+OuNkuVoBW QmJCmFFc1ZQeqao7z1iVEefqect62v2Ml1A8S3T/1+ad25Y0s+yv5SxPbfEJOdTeoF n1oxAo/OOU5/ROJWKuhEUQzlfTnbe1cmah/NIIQQ= In-reply-to: Comments: In-reply-to lalith message dated "Mon, 07 Dec 2015 00:32:37 +0000." Content-ID: <3108.1449503479.1@fido> X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.3.9 (theraft.openend.se [82.96.5.2]); Mon, 07 Dec 2015 16:51:23 +0100 (CET) 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: , Xref: csiph.com comp.lang.python:100091 In a message of Mon, 07 Dec 2015 00:32:37 +0000, lalith writes: >Dear sir. > >I was using Python2.7 and i move to Python3.5. >I face big trouble with installing software packages, i need in my >development. > >Lalith >-- >https://mail.python.org/mailman/listinfo/python-list Do you want to install your packages system-wide? Try py -3.5 -m install Do you want to install your python packages in a virtual environment? Start reading here: https://docs.python.org/3/library/venv.html If you sometimes want a python 2.7 virtual env you cannot get it with venv. You will have to use the older virtualenv. https://virtualenv.readthedocs.org/en/latest/ Laura