Hi Larry, Does that mean _at_least_ 2.7, or does it mean I need two different > versions of Python on the same box, or does it mean I need two boxes? >
The `virtualenv` tool will solve this problem for you. From http://python-guide-pt-br.readthedocs.io/en/latest/dev/virtualenvs/ : > A Virtual Environment is a tool to keep the dependencies required by > different projects in separate places, by creating virtual Python > environments for them. It solves the “Project X depends on version 1.x but, > Project Y needs 4.x” dilemma, and keeps your global site-packages directory > clean and manageable. It allows you to have application-specific versions of the python interpreter and python packages on the same machine. The global (server default) version of python will no longer be relevant. `virtualenv -p python3` will give you python 3 for Mailman 3 Core. `virtualenv` will give you python 2 for the other apps. Mark ------------------------------------------------------ Mailman-Users mailing list Mailman-Users@python.org https://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: https://mail.python.org/mailman/options/mailman-users/archive%40jab.org