Multiple versions of Python will happily run side-by-side on Windows.  I 
regularly have at least six versions installed for testing purposes.

When you install Python 3.4, (using the standard installer from python.org) 
it will also install the Python Launcher for Windows.  Using it, you will 
always type "py" (rather than "python") to launch your Python scripts.  A 
specific version of Python is selected using a command line switch:  "py 
somefile.py" will start the highest-version Python 2.  "py -3 somefile.py" 
will start the highest-version Python 3.  You can also select specific 
releases or 32 vs 64 bit versions. Each version has its own library, so 
there is no confusion. But, unless you have a specific need for Python2, 
don't bother with it. 

The Python Launcher for Windows also looks for a "hash-bang" on the first 
line of your program to specify a specific version of Python. For example, 
if the your script starts with:
#!/usr/lib/python3
then the latest Python 3 on your system will be used. (The /usr/lib is 
ignored on Windows).

Also, I strongly advise against using IDLE to learn Python.  It is the 
worst of many Python Integrated Development Environments.  You will find it 
much easier to learn with a tool like the free community edition of 
PyCharm. (https://www.jetbrains.com/pycharm/) When you are ready to use 
django seriously, you will want to pay for the professional edition, and 
run django on a virtual Linux computer. PyCharm will make that much easier. 
Also, try to avoid using Windows as a production django server if you have 
that option.

On Friday, April 3, 2015 at 4:26:21 AM UTC-6, Pythondjango wrote:
>
> Greetings to you all. 
> It is my pleasure to meet you all. 
> Please i have a problem in installing a new python 3.4.3 version,even 
> though i had installed the python 2.7.6 version on my window 7 pc through 
> the help of a distant friend who is a python programmer and it running 
> good.And now,i am also trying to become a python programmer, so please can 
> any distinguished gentlemen or ladies give me a realistic details of how i 
> will install this python 3.4.3 version so that i can start writing and 
> learning by practice with its idle. THANKS.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/54a60b19-6437-4c31-9e41-7784253070c9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to