Mailing List Archive

error of opening Python
Dear Python team,

This is my first time using Python, I tried to launch Python and it showed
"Python 3.9.2 (tags/v3.9.2:1a79785, Feb 19 2021, 13:44:55) [MSC v.1928 64
bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information." I
don't know what this meant and how to fix this. Could you please help me?
Thank you very much.

Kind regards,

Botao Liu
--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
On 25/02/2021 11.22, Botao Liu wrote:
> Dear Python team,
>
> This is my first time using Python, I tried to launch Python and it showed
> "Python 3.9.2 (tags/v3.9.2:1a79785, Feb 19 2021, 13:44:55) [MSC v.1928 64
> bit (AMD64)] on win32
> Type "help", "copyright", "credits" or "license" for more information." I
> don't know what this meant and how to fix this. Could you please help me?

There isn't anything to fix. It's working just fine.


--
Michael F. Stemper
If you take cranberries and stew them like applesauce they taste much
more like prunes than rhubarb does.
--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
On 25/02/2021 17:22, Botao Liu wrote:

> Type "help", "copyright", "credits" or "license" for more information."

Follow the instructions and type "help" at the >>> prompt.
Then follow the instructions which it displays.

--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos


--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
Am 25.02.21 um 18:22 schrieb Botao Liu:
> Dear Python team,
>
> This is my first time using Python, I tried to launch Python and it showed
> "Python 3.9.2 (tags/v3.9.2:1a79785, Feb 19 2021, 13:44:55) [MSC v.1928 64
> bit (AMD64)] on win32
> Type "help", "copyright", "credits" or "license" for more information." I
> don't know what this meant and how to fix this. Could you please help me?
> Thank you very much.

This is as it should be. What have you expected, that you think this is
wrong?

Maybe you are looking for an IDE like IDLE (should be installed along
with Python on Windows), or something very different?

Christian
--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
On Thu, 25 Feb 2021 17:22:35 +0000, Botao Liu wrote:

> Dear Python team,
>
> This is my first time using Python, I tried to launch Python and it
> showed "Python 3.9.2 (tags/v3.9.2:1a79785, Feb 19 2021, 13:44:55) [MSC
> v.1928 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or
> "license" for more information." I don't know what this meant and how to
> fix this. Could you please help me? Thank you very much.
>
> Kind regards,
>
> Botao Liu

Try with this first: https://python.swaroopch.com/
It gives you the details of what that means and what to do next. Also,
your Python interpreter is broken it says:


It should say something like this:
Python 3.9.2 (tags/v3.9.2:1a79785, Feb 19 2021, 13:44:55) [MSC
> v.1928 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or
> "license"

-- [mgogala@umajor ~]$ python3
Python 3.9.1 (default, Jan 20 2021, 00:00:00)
[GCC 10.2.1 20201125 (Red Hat 10.2.1-9)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>

The problem string is "win32". You should be able to open a terminal
Window and execute "uname -r".


Mladen Gogala
Database Consultant
https://dbwhisperer.wordpress.com
--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
On 2/26/2021 12:55 AM, Mladen Gogala via Python-list wrote:
> On Thu, 25 Feb 2021 17:22:35 +0000, Botao Liu wrote:
>
>> Dear Python team,
>>
>> This is my first time using Python, I tried to launch Python and it
>> showed "Python 3.9.2 (tags/v3.9.2:1a79785, Feb 19 2021, 13:44:55) [MSC
>> v.1928 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or
>> "license" for more information." I don't know what this meant and how to
>> fix this. Could you please help me? Thank you very much.
>>
>> Kind regards,
>>
>> Botao Liu
>
> Try with this first: https://python.swaroopch.com/
> It gives you the details of what that means and what to do next. Also,
> your Python interpreter is broken

No.

it says:
>
>
> It should say something like this:
> Python 3.9.2 (tags/v3.9.2:1a79785, Feb 19 2021, 13:44:55) [MSC
>> v.1928 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or
>> "license"

That is exactly what it does say, which is correct.

> -- [mgogala@umajor ~]$ python3
> Python 3.9.1 (default, Jan 20 2021, 00:00:00)
> [GCC 10.2.1 20201125 (Red Hat 10.2.1-9)] on linux
> Type "help", "copyright", "credits" or "license" for more information.
>>>>
>
> The problem string is "win32".

No. 'win32' is a historical artifact.

You should be able to open a terminal
> Window and execute "uname -r".

Not on Windows. Please don't spew misleading garbage that will only
confuse the new user on a different operating system.


--
Terry Jan Reedy

--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
On Fri, 26 Feb 2021 02:23:51 -0500, Terry Reedy wrote:


> Not on Windows. Please don't spew misleading garbage that will only
> confuse the new user on a different operating system.
>

You are right, I apologize. I sort of like poking fun at the Winduhs
users but this is not the right place.



--
Mladen Gogala
Database Consultant
https://dbwhisperer.wordpress.com
--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
that is not an error, its simply the python console intrepeter
--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
On Friday, April 15, 2022 at 2:17:28 AM UTC+5:30, Andrew Hernandez wrote:
> that is not an error, its simply the python console intrepeter
how do I open this file
--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
On 26/09/2023 07.27, Abdelkhelk ashref salay eabakh wrote:
> Dear Python team,
>
> This is my not first time using Python, I tried to launch Python and it showed
> "Python 3.11.3 (tags/v3.11.3:f3909b8, Apr 4 2023, 23:49:59) [MSC v.1934 64 bit (AMD64)] on win32
> Type "help", "copyright", "credits" or "license" for more information." I
> don't know what this meant and how to fix this. Could you please help me?

What error did you encounter? Aside from the lack of line breaks, it looks
quite similar to what I get when I start up python:

Python 3.6.9 (default, Mar 10 2023, 16:46:00)
[GCC 8.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>

Didn't you get the ">>> " prompt? Once you get it, it shows that the
Read, Evaluate, Print Loop (REPL) is ready for you to type some python
statements. For instance:

>>> x = 2**3
>>> print(x)
8
>>>

--
Michael F. Stemper
Outside of a dog, a book is man's best friend.
Inside of a dog, it's too dark to read.

--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
On 26/9/23 22:27, Abdelkhelk ashref salay eabakh via Python-list wrote:
> Dear Python team,
>
> This is my not first time using Python, I tried to launch Python and it showed

I'm no expert but....
> "Python 3.11.3 (tags/v3.11.3:f3909b8, Apr 4 2023, 23:49:59) [MSC v.1934 64 bit (AMD64)] on win
surely running a 64 bit version of python in a 23mbit version of windows
will cause significant problems!

try the correct python or windows

regards,



> Type "help", "copyright", "credits" or "license" for more information." I
> don't know what this meant and how to fix this. Could you please help me?
> Thank you very much.
>
> Kind regards



--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
On 2023-09-27 03:30, Chris Roy-Smith via Python-list wrote:
> On 26/9/23 22:27, Abdelkhelk ashref salay eabakh via Python-list wrote:
>> Dear Python team,
>>
>> This is my not first time using Python, I tried to launch Python and it showed
>
> I'm no expert but....
>> "Python 3.11.3 (tags/v3.11.3:f3909b8, Apr 4 2023, 23:49:59) [MSC v.1934 64 bit (AMD64)] on win
> surely running a 64 bit version of python in a 23mbit version of windows
> will cause significant problems!
>
It says "win32" even on 64-bit Windows.

If you try to run 64-bit Python on 32-bit Windows, it won't get as far
as printing that header!

> try the correct python or windows
>
> regards,
>
>
>
>> Type "help", "copyright", "credits" or "license" for more information." I
>> don't know what this meant and how to fix this. Could you please help me?
>> Thank you very much.
>>
>> Kind regards
>
>
>

--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
On 27/09/23 3:30 pm, Chris Roy-Smith wrote:
> surely running a 64 bit version of python in a 23mbit version of windows
> will cause significant problems!

23 millibits? I don't think you'd be able to run much at all
with that few bits! :-)

--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
Re: error of opening Python [ In reply to ]
This isn't an error.


This is just a normal Python Header message announcing that you are
using Python 3.11.3
The rest is just information from the build system : The build Id, the
date/time the build was made, and the version of the compiler.

There is nothing to fix.


------ Original Message ------
From: "Abdelkhelk ashref salay eabakh via Python-list"
<python-list@python.org>
To: python-list@python.org
Sent: Tuesday, 26 Sep, 23 At 13:27
Subject: error of opening Python
Dear Python team,
This is my not first time using Python, I tried to launch Python and it
showed
"Python 3.11.3 (tags/v3.11.3:f3909b8, Apr 4 2023, 23:49:59) [MSC v.1934
64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information."
I
don't know what this meant and how to fix this. Could you please help
me?
Thank you very much.
Kind regards
--
https://mail.python.org/mailman/listinfo/python-list
<https://mail.python.org/mailman/listinfo/python-list>

-- <br>Anthony Flury<br>anthony.flury@btinternet.com
--
https://mail.python.org/mailman/listinfo/python-list