Re: Which curses version should I use under Windows

2019-06-17 Thread jfong
Terry Reedy於 2019年6月18日星期二 UTC+8上午11時03分00秒寫道: > On 6/17/2019 10:54 PM, jf...@ms4.hinet.net wrote: > > > c:\Works\Python34>pip install windows-curses > > DEPRECATION: Python 3.4 support has been deprecated. pip 19.1 will be the > > last one supporting it. Please upgrade your Python as Python 3.4

Re: Please solve my problem

2019-06-17 Thread Abdur-Rahmaan Janhangeer
If you have a 32bit pc it won't install. Abdur-Rahmaan Janhangeer https://github.com/Abdur-rahmaanJ Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: Subprocess

2019-06-17 Thread Terry Reedy
On 6/17/2019 11:36 AM, Terry Reedy wrote: On 6/14/2019 11:09 AM, Douglas Beard via Python-list wrote: Error: IDLE's Subprocess didn't make connection. Either IDLE can't start a subprocess or personal firewall is blocking the connection.python has been working fine until today. I used the python

Re: Which curses version should I use under Windows

2019-06-17 Thread Terry Reedy
On 6/17/2019 10:54 PM, jf...@ms4.hinet.net wrote: c:\Works\Python34>pip install windows-curses DEPRECATION: Python 3.4 support has been deprecated. pip 19.1 will be the last one supporting it. Please upgrade your Python as Python 3.4 w on't be maintained after March 2019 (cf PEP 429). Collectin

Re: Which curses version should I use under Windows

2019-06-17 Thread jfong
MRAB於 2019年6月18日星期二 UTC+8上午10時08分23秒寫道: > On 2019-06-18 02:39, jf...@ms4.hinet.net wrote: > > As many others had encountered, when I import the curses module under > > Windows, I got > > > > ImportError: No module named '_curses' > > > > Search "curses" on the Pypi returns plenty of related

Re: Which curses version should I use under Windows

2019-06-17 Thread MRAB
On 2019-06-18 02:39, jf...@ms4.hinet.net wrote: As many others had encountered, when I import the curses module under Windows, I got ImportError: No module named '_curses' Search "curses" on the Pypi returns plenty of related packages. Which one should I use? Is this package still valid

Which curses version should I use under Windows

2019-06-17 Thread jfong
As many others had encountered, when I import the curses module under Windows, I got ImportError: No module named '_curses' Search "curses" on the Pypi returns plenty of related packages. Which one should I use? Is this package still valid on usage? Any comment will be appreciated. --Jach

Re: How to create a RGB color Table

2019-06-17 Thread Vlastimil Brom
po 17. 6. 2019 v 11:30 odesílatel Jorge Conrado Conforte napsal: > > HI, > > Please someone could help me. How can I create a new color table with the > values of r g and b that I have. I use the Mataplolib color tables. However, > I would like to use a new color table with the respective r g b

Re: Python-list Digest, Vol 189, Issue 17

2019-06-17 Thread אורי
Please don't reply to digest. אורי u...@speedy.net On Mon, Jun 17, 2019 at 6:01 PM Schachner, Joseph < joseph.schach...@teledyne.com> wrote: > Please see https://docs.python.org/2/library/colorsys.html > > And follow the links in there, read the FAQ. > > You'll find that python represents RGB va

Re: Cannot install python on my system

2019-06-17 Thread Terry Reedy
On 6/16/2019 6:45 PM, EMAX ENGRG SERVICES LTD wrote: Please I have difficulties installing python on my system. After downloading the extension, yet it would not take me to sequence of agreeing to license and terms. You need to be much more detailed and specific as to what you did and what

Re: Understand workflow about reading and writing files in Python

2019-06-17 Thread Terry Reedy
On 6/15/2019 12:52 AM, Windson Yang wrote: I'm trying to understand the workflow of how python read/writes files with buffer. I drew a diagram for it. I will be appreciated if someone can review the diagram :D [image: 屏幕快照 2019-06-15 下午12.50.57.png] Text only list, no attachments. -- Terry Ja

Re: Subprocess

2019-06-17 Thread Terry Reedy
On 6/14/2019 11:09 AM, Douglas Beard via Python-list wrote: Error: IDLE's Subprocess didn't make connection. Either IDLE can't start a subprocess or personal firewall is blocking the connection.python has been working fine until today. I used the python repair but no luck. it does not seem my

Re: python 2 to 3 conversion

2019-06-17 Thread Igor Korot
Hi, Chris, On Mon, Jun 17, 2019 at 9:55 AM Chris Angelico wrote: > > On Mon, Jun 17, 2019 at 11:15 PM Igor Korot wrote: > > > > Hi, Chris et al, > > > > On Mon, Jun 17, 2019 at 8:00 AM Chris Angelico wrote: > > > > > > On Mon, Jun 17, 2019 at 10:50 PM Thomas Jollans wrote: > > > > > > > > On 1

RE: Python-list Digest, Vol 189, Issue 17

2019-06-17 Thread Schachner, Joseph
Please see https://docs.python.org/2/library/colorsys.html And follow the links in there, read the FAQ. You'll find that python represents RGB values in three numeric values. Very simple. I believe scale is 0.0 to 1.0. --- Joseph S. -Original Message- From: Python-list On Behalf O

Re: python 2 to 3 conversion

2019-06-17 Thread Chris Angelico
On Mon, Jun 17, 2019 at 11:15 PM Igor Korot wrote: > > Hi, Chris et al, > > On Mon, Jun 17, 2019 at 8:00 AM Chris Angelico wrote: > > > > On Mon, Jun 17, 2019 at 10:50 PM Thomas Jollans wrote: > > > > > > On 17/06/2019 15.14, Igor Korot wrote: > > > > Hi, > > > > Is there a place where there is

Re: python 2 to 3 conversion

2019-06-17 Thread Grant Edwards
On 2019-06-17, Igor Korot wrote: > So, how do I write the code compatible with both python 2 and python 3 > in this case? Writing 2/3 compatible code that deals with bytes is difficult. For example: Python 2.7.15 (default, Sep 12 2018, 15:19:18) >>> bytes(5) '5' >>> b'1234'[0]

Re: Is there an archive of this list with permanent URLs to each message?

2019-06-17 Thread Skip Montanaro
> Hello! When I wrote Fluent Python a few years ago I provided my > readers with hundreds of links to my sources, including several links > to messages in the python-list archive. > > Now as I prepare the 2nd edition I notice all my links to this list > are broken. Apparently mailman rebuilds the a

Re: Coding problem

2019-06-17 Thread Rhodri James
On 14/06/2019 10:32, INJAMUL HOQUE wrote: ...nothing. I'm afraid your email had no content when it reached us. If you included a screen shot, I'm afraid it was automatically removed before it reached us. -- Rhodri James *-* Kynesim Ltd -- https://mail.python.org/mailman/listinfo/python-list

Re: python 2 to 3 conversion

2019-06-17 Thread Igor Korot
Hi, Chris et al, On Mon, Jun 17, 2019 at 8:00 AM Chris Angelico wrote: > > On Mon, Jun 17, 2019 at 10:50 PM Thomas Jollans wrote: > > > > On 17/06/2019 15.14, Igor Korot wrote: > > > Hi, > > > Is there a place where there is a full list of incompatibilities between > > > python 2 and python 3 is

Re: python 2 to 3 conversion

2019-06-17 Thread Chris Angelico
On Mon, Jun 17, 2019 at 10:50 PM Thomas Jollans wrote: > > On 17/06/2019 15.14, Igor Korot wrote: > > Hi, > > Is there a place where there is a full list of incompatibilities between > > python 2 and python 3 is available and how to fix them? > > ‘What’s new in Python 3.0’ is a good starting point

Re: python 2 to 3 conversion

2019-06-17 Thread Chris Angelico
On Mon, Jun 17, 2019 at 10:45 PM Igor Korot wrote: > > Hi, Chris, > > On Mon, Jun 17, 2019 at 7:31 AM Chris Angelico wrote: > > > > On Mon, Jun 17, 2019 at 10:15 PM Igor Korot wrote: > > > > > > Hi, > > > Is there a place where there is a full list of incompatibilities between > > > python 2 and

Re: python 2 to 3 conversion

2019-06-17 Thread Thomas Jollans
On 17/06/2019 15.14, Igor Korot wrote: > Hi, > Is there a place where there is a full list of incompatibilities between > python 2 and python 3 is available and how to fix them? ‘What’s new in Python 3.0’ is a good starting point https://docs.python.org/3/whatsnew/3.0.html It doesn’t list all st

Re: python 2 to 3 conversion

2019-06-17 Thread Igor Korot
Hi, Chris, On Mon, Jun 17, 2019 at 7:31 AM Chris Angelico wrote: > > On Mon, Jun 17, 2019 at 10:15 PM Igor Korot wrote: > > > > Hi, > > Is there a place where there is a full list of incompatibilities between > > python 2 and python 3 is available and how to fix them? > > > > I'm looking for a w

Re: api msi.python .dll missing

2019-06-17 Thread Igor Korot
Hi, On Mon, Jun 17, 2019 at 4:43 AM Nisha Kolekar wrote: > > Hello, > My Python36 library deleted so i cannot reinstal python3.6.8amd64 on my > windows8.1 64bit OS. > Any command to remove complete python from OS through command prompt Can you remove the python completely and install from scratc

Re: there is an errar it is nit opening

2019-06-17 Thread Igor Korot
Hi, On Mon, Jun 17, 2019 at 4:35 AM clinchris13 wrote: > > There is an error in this message - I can't read it. Thank you. > > -- > https://mail.python.org/mailman/listinfo/python-list -- https://mail.python.org/mailman/listinfo/python-list

Re: problem about the installation

2019-06-17 Thread Igor Korot
Hi, On Mon, Jun 17, 2019 at 4:43 AM David Martin wrote: > > Hello there! > > > My computer windows is 8 and the operating system is 32-bit operating > system, based upon x64 processor but I got a problem during installation, > could you please assist me about this? > I appreciate your efforts in

Re: Issue with the program

2019-06-17 Thread Igor Korot
Hi, On Mon, Jun 17, 2019 at 4:47 AM Marselle Grace wrote: > > > Hello, I downloaded the Python program today, as well as the separate IDE > pyCharm today and on pyCharm I tried setting up Python as the interpreter, as > the tutorial I am following stated, however it says that it is invalid and

Re: Please solve my problem

2019-06-17 Thread Igor Korot
Hi, On Mon, Jun 17, 2019 at 4:39 AM Karan Aggarwal wrote: > > Respected Sir, > > I am a reserach scholar in image processing. > Sir i started the work on deep learning and machine learning. > For this, i installed many times tensorflow on python. > but it gave me error always. What error did you

Re: there is an errar it is nit opening

2019-06-17 Thread Igor Korot
Hi, On Mon, Jun 17, 2019 at 4:51 AM clinchris13 wrote: > > There is an error in you post - I can't see anything... Thank you. > > -- > https://mail.python.org/mailman/listinfo/python-list -- https://mail.python.org/mailman/listinfo/python-list

Re: python 2 to 3 conversion

2019-06-17 Thread Chris Angelico
On Mon, Jun 17, 2019 at 10:15 PM Igor Korot wrote: > > Hi, > Is there a place where there is a full list of incompatibilities between > python 2 and python 3 is available and how to fix them? > > I'm looking for a way to fix following code, which runs perfectly with python > 2 > (and make it work

Re: Facing an error while install python

2019-06-17 Thread Igor Korot
Hi, On Mon, Jun 17, 2019 at 4:59 AM Hassan Hamayun wrote: > > When i Install python i face an error i attach the screenshot with it. Sorry attachments not supported - some blind people are reading the list and provide support. Can you describe what happened and/or copy'n'paste the error? Thank

Re: how to learn python language

2019-06-17 Thread Igor Korot
Hi, On Mon, Jun 17, 2019 at 4:55 AM praveendevan wrote: > > The best way is to get to class that teaches it. Then you will learn how to do things proper way. Thank you. > > Sent from Mail for Windows 10 > > -- > https://mail.python.org/mailman/listinfo/python-list -- https://mail.python.org/

Re: Coding problem

2019-06-17 Thread Igor Korot
On Mon, Jun 17, 2019 at 5:03 AM INJAMUL HOQUE wrote: > > Reading problem... > -- > https://mail.python.org/mailman/listinfo/python-list -- https://mail.python.org/mailman/listinfo/python-list

Re: problem encountered

2019-06-17 Thread Igor Korot
Hi, On Mon, Jun 17, 2019 at 5:14 AM 宣鸿 wrote: > > Hi, > > > After installation, in cmd window, I can not run any command successfully. I > copied screens as below, could you pls help? > Very appreciate for your help! I hope you can read my message. This list does not support an attachments - i

Re: Cannot install python on my system

2019-06-17 Thread Igor Korot
Hi, On Mon, Jun 17, 2019 at 5:18 AM EMAX ENGRG SERVICES LTD wrote: > > > > Sent from Mail for Windows 10 > Sir, > Please I have difficulties installing python on my system. After downloading > the extension, yet it would not take me to sequence of agreeing to license > and terms. I am looking

python 2 to 3 conversion

2019-06-17 Thread Igor Korot
Hi, Is there a place where there is a full list of incompatibilities between python 2 and python 3 is available and how to fix them? I'm looking for a way to fix following code, which runs perfectly with python 2 (and make it work with both python 2 and python 3): if bytes[0:16].tostring() != '':

Re: installing of python

2019-06-17 Thread Paul Moore
(a) By default if you're using a user install, Python is installed to %LOCALAPPDATA%\Programs\Python. (b) This list is text-only, so the screenshot didn't appear - I'm therefore only guessing what your issue is here. (c) Does the command py -V work? That should run Python and give the version numbe

Installing python into Blender 2.79

2019-06-17 Thread flori....@t-online.de
Hallo Python, I want to import DWG- or FBX-data from AutoCAD Architecture 2015 into Blender. I downloaded Python 3.7.3 into Windows 10 Prof., but I cannot find the python-program and do not know the path to bind python into blender. Please could you help and tell me how to bring python into B

UG blog's contact advoc...@python.org no longer working?

2019-06-17 Thread Abdur-Rahmaan Janhangeer
Greetings, here: https://wiki.python.org/moin/StartingYourUsersGroup it is written: Also, please consider posting news from your user group on the Python User Group Blog ! and on that page, the contact email is: Just drop an email to advoc...@python.org and

Cannot install python on my system

2019-06-17 Thread EMAX ENGRG SERVICES LTD
Sent from Mail for Windows 10 Sir, Please I have difficulties installing python on my system. After downloading the extension, yet it would not take me to sequence of agreeing to license and terms. I am looking forward to hearing from you/ Best regards. -- https://mail.python.org/mailman/

problem encountered

2019-06-17 Thread 宣鸿
Hi, After installation, in cmd window, I can not run any command successfully. I copied screens as below, could you pls help? Very appreciate for your help! Could you pls help answering how to fix this issue? Thx again! Best Regards, Alan -- https://mail.python.org/mailman/listinfo/pytho

Understand workflow about reading and writing files in Python

2019-06-17 Thread Windson Yang
I'm trying to understand the workflow of how python read/writes files with buffer. I drew a diagram for it. I will be appreciated if someone can review the diagram :D [image: 屏幕快照 2019-06-15 下午12.50.57.png] -- https://mail.python.org/mailman/listinfo/python-list

Subprocess

2019-06-17 Thread Douglas Beard via Python-list
Error: IDLE's Subprocess didn't make connection. Either IDLE can't start a subprocess or personal firewall is blocking the connection.python has been working fine until today. I used the python repair but no luck. it does not seem my firewall is blocking. please help -- https://mail.python.org/

Coding problem

2019-06-17 Thread INJAMUL HOQUE
-- https://mail.python.org/mailman/listinfo/python-list

Facing an error while install python

2019-06-17 Thread Hassan Hamayun
When i Install python i face an error i attach the screenshot with it. [image: Untitled.png] Thanks & Best Regaed *Hassan Hamayun* -- https://mail.python.org/mailman/listinfo/python-list

how to learn python language

2019-06-17 Thread praveendevan
Sent from Mail for Windows 10 -- https://mail.python.org/mailman/listinfo/python-list

there is an errar it is nit opening

2019-06-17 Thread clinchris13
-- https://mail.python.org/mailman/listinfo/python-list

Issue with the program

2019-06-17 Thread Marselle Grace
Hello, I downloaded the Python program today, as well as the separate IDE pyCharm today and on pyCharm I tried setting up Python as the interpreter, as the tutorial I am following stated, however it says that it is invalid and every time I try to input any code, a window for Python setup appea

api msi.python .dll missing

2019-06-17 Thread Nisha Kolekar
Hello, My Python36 library deleted so i cannot reinstal python3.6.8amd64 on my windows8.1 64bit OS. Any command to remove complete python from OS through command prompt -- https://mail.python.org/mailman/listinfo/python-list

problem about the installation

2019-06-17 Thread David Martin
Hello there! My computer windows is 8 and the operating system is 32-bit operating system, based upon x64 processor but I got a problem during installation, could you please assist me about this? I appreciate your efforts in advance. Thanks Yours sincerely YarDel Daudy

Please solve my problem

2019-06-17 Thread Karan Aggarwal
Respected Sir, I am a reserach scholar in image processing. Sir i started the work on deep learning and machine learning. For this, i installed many times tensorflow on python. but it gave me error always. please resolve my issue sothat i can work further. Sir, please help me out. Thanks --

Is there an archive of this list with permanent URLs to each message?

2019-06-17 Thread Luciano Ramalho
Hello! When I wrote Fluent Python a few years ago I provided my readers with hundreds of links to my sources, including several links to messages in the python-list archive. Now as I prepare the 2nd edition I notice all my links to this list are broken. Apparently mailman rebuilds the archives and

there is an errar it is nit opening

2019-06-17 Thread clinchris13
-- https://mail.python.org/mailman/listinfo/python-list

error 0xc0000374 during installation

2019-06-17 Thread Lokallu Maltorin
Hi there, I always get a 0xc374 error when I try to install Python on my PC. I am using a flash installed win 7 Pro x64, with all available win-update installed including SP1 and convenience-rollup. I found 1. python -m pip worked but "python not responding" error always show up at las

installing of python

2019-06-17 Thread jaydip rajpara
this pic of my c drive after installing python 3.7.2. No python folder generated -- https://mail.python.org/mailman/listinfo/python-list

How to create a RGB color Table

2019-06-17 Thread Jorge Conrado Conforte
HI, Please someone could help me. How can I create a new color table with the values of r g and b that I have. I use the Mataplolib color tables. However, I would like to use a new color table with the respective r g b values that I have. Thank you. [https://ipmcdn.avast.com/images/icons/icon