X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E7865384F00C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1676062032; bh=mlEfdvP7UAxLQ+YsS3Gu+XZPJlC1CD/D07JhrDo65SE=; h=References:In-Reply-To:Date:Subject:To:Cc:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=lFGd6EnShNay+TAV1r0USRJcePFy6Sj1mZ6UeySVsGfA9HHtU52affXRUqB0iFUl6 NXs8btvoYcDx+nQkv+Y5VLo+KU914ZSKpVb7hYTUrPFjQrYEgc/dxm5BdULdjrI4ti O5MnGTL0fLD6YvTMEf1S/EfsQNF4PZuzRk4qayec= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 5A2BF3858414 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=0X3mfJrKVq1zjw2+WzBQ094Vy/mdIgjZ0PsIEOjJwUU=; b=wS+QfwBNScv1N73a4uAUBq8yGE8F5cTbNEobxM7mgdmdeWshMDaIJN0Wb8Up6fmwQW IMo4dP3/SUdXo+AwIq0n6fp3iFtap3UcHe6K4VJwerW2+Wc1jD8k2rZycBqUbuxWFu4o UcSWzrSQ5PdanlcEKxthek/XH9rNxWE0JLCWWDUtu+EVvoy/9kTgEMTeNVPHp2x7FM77 jaY/Vz6VVAUTCpbJQJ8eekBJjsWws/SLqaDE8F/QaAC+28IHsK5L2cpJ4Z0lK6p8F5T7 PW++FLDxkHJCDiP3DyD/Tesgfpmn3TRLIgIpKZwSez626uesVbJeX8bNQYPkbwsbvaI9 DUxg== X-Gm-Message-State: AO0yUKW7d93l8ky7fkmifhRr81SXmuxwjZQF/Jfzu10isLQ7a85IPivb Gxr+lXwxPqvdOls71J9k4an/hG0D+pD3qX217qvH5g== X-Google-Smtp-Source: AK7set+27zB9d7d/VyLeDEIgTU/O/hIdDrbOfSCibMFb7Ku+Q76zJ0KweGb6ewO1eI+PcK2THIgRtk9m4WEMTgbPd5I= X-Received: by 2002:aca:f2c6:0:b0:35a:8a2b:e901 with SMTP id q189-20020acaf2c6000000b0035a8a2be901mr1443548oih.249.1676061995612; Fri, 10 Feb 2023 12:46:35 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: Date: Fri, 10 Feb 2023 20:46:06 +0000 Message-ID: Subject: Re: Python 3 versions To: Jose Isaias Cabrera Cc: Jim Garrison via Cygwin X-Spam-Status: No, score=-1.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.29 List-Id: General Cygwin discussions and problem reports List-Archive: List-Post: List-Help: List-Subscribe: , From: Adam Dinwoodie via Cygwin Reply-To: Adam Dinwoodie Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "Cygwin" On Fri, 10 Feb 2023 at 18:46, Jose Isaias Cabrera via Cygwin wrote: > Greetings. > > I am going to start a project using python, but I need to be able to run some of the python3 libraries. When I use setup to install python, there are a bunch of python* versions: > python2* > python3 > python36* > ... > python39* > > I know that python2 is, probably, on its way out. Correct. Python2 has been completely unsupported by the Python project for over three years: https://devguide.python.org/developer-workflow/development-cycle/index.html#end-of-life-branches > But, why so many choices for versions of python? Because some Python-based programs need a specific version. If you're starting out a new project and don't have a specific version, you can probably use the latest version available, but that's not always the case. > One more question, if I install python3, does that mean that I can use all of those python3x libraries? In other words, can I use the libraries of python37* or python38* or python39? Or are these specific to those versions? Confusing, it is. Thanks. Some Python libraries will work with any 3.x Python version. Most will only work with a specific version. You definitely won't be able to use, say, the python37-requests package with a python39 installation. The "python3" package isn't a real package; it just means "the latest package of Python3 available". Right now, that means Python 3.9, but I expect Python 3.10 and 3.11 will appear at some point as well. HTH Adam -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple