Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Web2py and python 3

Does web2py function with python 3.3 or python 3.4? I have installed web2py but it cannot run with the python3.4 that I use. I get an error after trying to run the 'web2py.exe - S welcome' that says, syntax error

like image 570
user3346746 Avatar asked Mar 27 '14 10:03

user3346746


People also ask

Does web2py support Python 3?

Free open source full-stack framework for rapid development of fast, scalable, secure and portable database-driven web-based applications. Written and programmable in Python (version 3 and 2.7).

Which is better web2py or Django?

If you're a beginner programmer, or a newbie at web dev, web2py is definitely for you. However, if you're fluent in Python and you need to meet a close deadline, Django would be the better option.

What is web2py used for?

Web2py allows web developers to program dynamic web content using Python. Web2py is designed to help reduce tedious web development tasks, such as developing web forms from scratch, although a web developer may build a form from scratch if required.

What is web2py and flask?

Web2py is a potential framework when compared to Django and Flask in terms of speed and simplicity of the development. As Web2py uses python-based template language, this allows python developers to start writing code immediately after understanding the basics of writing template as views.


1 Answers

Currently, web2py only works with Python 2.6 - 2.7. Due to the promise of backward compatibility, web2py will not migrate to Python 3 only. However, work is underway on making web2py run under both Python 2 (specifically, 2.7) and Python 3 (specifically, >= 3.5).

UPDATE: As of the 2.15.1 release, web2py now supports both Python 2 and Python 3.

like image 55
Anthony Avatar answered Oct 13 '22 05:10

Anthony