Aug-25-2020, 01:46 PM
How To know if my python app can run on different versions of python 3.x And 2.7 also!
Python App On Different Versions
|
Aug-25-2020, 01:46 PM
How To know if my python app can run on different versions of python 3.x And 2.7 also!
Aug-25-2020, 01:55 PM
(Aug-25-2020, 01:46 PM)Harshil Wrote: How To know if my python app can run on different versions of python 3.x And 2.7 also!well, you should know how you have written it (what minimum target version you had in mind). of course you should know also the differences in different python versions. At the moment it no longer makes sense to target python2 at all
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link Create MCV example Debug small programs
Aug-25-2020, 03:54 PM
In addition to buran's recommendation,
if you install pyenv (see: https://python-forum.io/Thread-pyenv-Sim...ight=pyenv ) you can easily switch python versions and then try running under each and again, stay away from python 2.7 it's extinct
If on Windows look here.
There is part about py there,which is used to run other versions.C:\1 λ python -V Python 3.8.3 C:\1 λ python hello.py Hello from 3.8.3 # Run 2.7 C:\1 λ py -2.7 hello.py Hello from 2.7.9 # Install to 2.7 λ py -2.7 -m pip install logzero Requirement already satisfied: colorama; sys_platform == "win32" in c:\python27\lib\site-packages (from logzero) (0.3.2)So python and pip always point to then main version eg 3.8,and py can access all other version from python.org.
|
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
multiple versions of Python | Skaperen | 6 | 4,074 |
Jun-13-2019, 12:32 AM Last Post: Skaperen |
|
compiling various versions of Python, which toolchain? | Skaperen | 4 | 3,616 |
Jun-06-2019, 06:28 AM Last Post: Skaperen |
|
running other older versions of python | Skaperen | 20 | 17,947 |
Mar-03-2018, 02:23 AM Last Post: Skaperen |
|
many versions on python on linux | Skaperen | 8 | 7,444 |
Oct-17-2017, 02:22 AM Last Post: Skaperen |