Re: Pip Error

2023-05-17 Thread Thomas Passin
On 5/17/2023 10:54 AM, Aysu Mammadli wrote: I encountered an error while attempting to install pip using the terminal. The exact error message I received is: "An error occurred during configuration: option use-feature: invalid choice: '2020-resolver' (choose from 'fast-deps', 'truststore',

Re: Pip Error

2023-05-17 Thread Barry
> On 17 May 2023, at 17:26, Aysu Mammadli wrote: > > I encountered an error while attempting to install pip using the terminal. > The exact error message I received is: > > "An error occurred during configuration: option use-feature: invalid > choice: '2020-resolver' (choose from

Pip Error

2023-05-17 Thread Aysu Mammadli
I encountered an error while attempting to install pip using the terminal. The exact error message I received is: "An error occurred during configuration: option use-feature: invalid choice: '2020-resolver' (choose from 'fast-deps', 'truststore', 'no-binary-enable-wheel-cache')" Here are the

Re: FW: pip Error

2021-12-11 Thread Mats Wichmann
On 12/11/21 00:35, Sidharth S Nair wrote: Hi, I am NINJAGAMING107 a active python user and lately I have been trying to make my own personal AI assistant but I am not able to make because I am not able to import Speech Recognition and some other more. The error says module not

FW: pip Error

2021-12-11 Thread Sidharth S Nair
    Sent from [1]Mail for Windows   From: [2]Sidharth S Nair Sent: 11 December 2021 01:00 PM To: [3]python-list@python.org Subject: pip Error       Sent from [4]Mail for Windows   Hi, I am NINJAGAMING107 a active python user and lately I have

[issue45513] PIP error Cannot call rmtree on a symbolic link should report the lilnk

2021-10-18 Thread Ned Deily
Ned Deily added the comment: This appears to be an issue with pip. You should report the issue to the pip project: https://github.com/pypa/pip/issues/ -- nosy: +ned.deily resolution: -> third party stage: -> resolved status: open -> closed ___

[issue45513] PIP error Cannot call rmtree on a symbolic link should report the lilnk

2021-10-18 Thread Timothe Litt
1.2.3: Successfully uninstalled pip-21.2.3 ERROR: Could not install packages due to an OSError: Cannot call rmtree on a symbolic link -- components: Installation messages: 404186 nosy: tlhackque priority: normal severity: normal status: open title: PIP error Cannot call rmtree on a symbolic

[issue37550] SSL Pip Error

2021-04-17 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___

Re: "pip" error message

2020-04-21 Thread Mats Wichmann
On 4/21/20 5:38 AM, Frank Millman wrote: > On 2020-04-21 12:02 PM, Simone Bravin wrote: >> >> I found that I had downloaded Python from what I would call "automatic >> check version link" and that downloaded the 32-bit version, but my >> notebook have 64-bit, so I changed the version to the 64-bit

Re: "pip" error message

2020-04-21 Thread Frank Millman
On 2020-04-21 12:02 PM, Simone Bravin wrote: I found that I had downloaded Python from what I would call "automatic check version link" and that downloaded the 32-bit version, but my notebook have 64-bit, so I changed the version to the 64-bit one. I have had the same problem in the past.

Re: "pip" error message

2020-04-21 Thread Simone Bravin
Hi all, First of all thanks to all that answered my question. I had already changed the PATH and tried to upgrade pip version but it was not possible to reach pip in any way, the error that I was getting looked like regarding some program file of pip. Anyway after some trying I was able to

Re: "pip" error message

2020-04-20 Thread Souvik Dutta
Have you tried updating pip? There was a bug in pip version 10 Souvik flutter dev On Mon, Apr 20, 2020, 10:10 PM Simone Bravin wrote: > Hello everyone, > > > I just started using Python to learn a bit of coding, so I'm pretty a > > newbie to this, I tried to install few extra packages

Re: "pip" error message

2020-04-20 Thread Richard Guinn
Hi Simone and all - I'm not sure how to fix/correct... but just a redundant 'me too'. I tried to install pybibframe (https://pypi.org/project/pybibframe/) and also keep getting errors. Wasn't sure if it was the module/package or what. My error is along the lines of: ERROR: Command errored

"pip" error message

2020-04-20 Thread Simone Bravin
Hello everyone, I just started using Python to learn a bit of coding, so I'm pretty a newbie to this, I tried to install few extra packages using pip but it doesn't work. When I check for pip version using command line> pip --version I get the following error message: Traceback (most

[issue37550] SSL Pip Error

2019-07-11 Thread Christian Heimes
Christian Heimes added the comment: Please provide more information. What is your operating system, how did you install Python, and which error message are you getting? -- ___ Python tracker

[issue37550] SSL Pip Error

2019-07-10 Thread Bane Banane
New submission from Bane Banane : Python PIP SSL module is not avaible when i start: pip install -- assignee: christian.heimes components: SSL messages: 347630 nosy: Bane Banane, christian.heimes priority: normal severity: normal status: open title: SSL Pip Error type: compile error

[issue24307] [Python 2] pip error on windows whose current user name contains non-ascii characters

2018-12-22 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> third party stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue24307] [Python 2] pip error on windows whose current user name contains non-ascii characters

2018-12-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Even if you encode the Unicode default for output, the user can not specify the same value, unless you use custom converter. For example, if you encode u"早上好" as string "\xe6\x97\xa9\xe4\xb8\x8a\xe5\xa5\xbd" (in UTF-8), the user can only specify the

[issue24307] [Python 2] pip error on windows whose current user name contains non-ascii characters

2018-10-17 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: @Victor I think this is an issue with optparse where it can't handle non-ASCII strings for %default that is exposed by pip. I can see similar places where non-ASCII strings can cause issue in argparse for unicode choices (issue35009). I think this

[issue24307] [Python 2] pip error on windows whose current user name contains non-ascii characters

2018-10-17 Thread STINNER Victor
STINNER Victor added the comment: pip is not part of Python 2, so I suggest to close this issue as "third party". I dislike changing optparse just for pip. For me, the bug should be fixed in pip, not in optparse. I see a high risk of breaking applications which currently work as expected.

[issue24307] [Python 2] pip error on windows whose current user name contains non-ascii characters

2018-10-17 Thread STINNER Victor
Change by STINNER Victor : -- title: pip error on windows whose current user name contains non-ascii characters -> [Python 2] pip error on windows whose current user name contains non-ascii characters ___ Python tracker <https://bugs.pyth

[issue24307] pip error on windows whose current user name contains non-ascii characters

2018-10-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I suppose there is a similar issue in Python 3 with bytes default. Using unicode() in Python 2 will make the help string an Unicode string, and this can cause an issue with translated help string. And this will cause an issue with non-ASCII 8-bit strings.

[issue24307] pip error on windows whose current user name contains non-ascii characters

2018-10-16 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- keywords: +patch pull_requests: +9269 stage: -> patch review ___ Python tracker ___ ___

[issue24307] pip error on windows whose current user name contains non-ascii characters

2018-10-08 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Since @tanbro-liu hasn't responded I am proposing this to be an easy issue. The issue is that %default in optparse doesn't handle unicode values. The fix would be to make the patch in msg244244 as a PR attributing to the original author and add a

[issue24307] pip error on windows whose current user name contains non-ascii characters

2018-09-22 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks for the patch. Would you like to make a GitHub PR. I think it's a problem with optparse in general while trying to have a default value with unicode character and %default in the help string. The same code is present in Python 3 but strings

[issue24307] pip error on windows whose current user name contains non-ascii characters

2018-09-22 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

Re: Pip error on installing Python 3.5

2016-10-11 Thread Zachary Ware
On Tue, Oct 11, 2016 at 7:07 PM, Steve D'Aprano wrote: > I've just installed Python 3.5 from the source tarball and received an > unexpected error related to pip. On Linux, as a regular user (except for > the last line): > > > wget

Pip error on installing Python 3.5

2016-10-11 Thread Steve D'Aprano
I've just installed Python 3.5 from the source tarball and received an unexpected error related to pip. On Linux, as a regular user (except for the last line): wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz tar xvf Python-3.5.2.tgz cd Python-3.5.2 ./configure make sudo make

[issue24307] pip error on windows whose current user name contains non-ascii characters

2015-06-11 Thread Suzumizaki
Changes by Suzumizaki suzumiz...@free.japandesign.ne.jp: -- nosy: +Suzumizaki ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24307 ___ ___

[issue24307] pip error on windows whose current user name contains non-ascii characters

2015-05-27 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- nosy: +Marcus.Smith, dstufft, ncoghlan, paul.moore ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24307 ___

[issue24307] pip error on windows whose current user name contains non-ascii characters

2015-05-27 Thread tanbro-liu
title: pip error on windows whose current user name contains non-ascii characters type: crash versions: Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24307