Re: pip install -e does not build shared libraries

2023-06-22 Thread Cebtenzzre via Python-list
It turns out that this is a scikit-build issue: https://github.com/scikit-build/scikit-build/issues/740 https://github.com/scikit-build/scikit-build/issues/939 https://github.com/scikit-build/scikit-build/issues/981 -- https://mail.python.org/mailman/listinfo/python-list

Re: pip install -e does not build shared libraries

2023-06-21 Thread Cebtenzzre via Python-list
On Wed, Jun 21, 2023 at 5:45 PM Cebtenzzre wrote: > In the case of bitsandbytes, there is no build folder generated at > all, just bitsandbytes.egg-info. This results in an error when I try > to import it, e.g. "CUDA SETUP: Required library version not found: > libbitsandbytes_cuda121_nocublaslt.s

Re: PIP install

2018-05-11 Thread Sharan Basappa
On Saturday, 12 May 2018 08:32:04 UTC+5:30, MRAB wrote: > On 2018-05-12 03:47, Sharan Basappa wrote: > > I have installed Python recently. Do I need to install PIP separately or > > this would be part of default installation. When I run pip install <>, > > windows complains that no such command

Re: PIP install

2018-05-11 Thread MRAB
On 2018-05-12 03:47, Sharan Basappa wrote: I have installed Python recently. Do I need to install PIP separately or this would be part of default installation. When I run pip install <>, windows complains that no such command exists That means that pip isn't on the Windows search path. It mi

Re: pip install -r requirements.txt fails with Python 3.6 on Windows 10

2017-01-06 Thread breamoreboy
On Tuesday, January 3, 2017 at 8:08:37 PM UTC, Uri Even-Chen wrote: > Thank you, I'll consider to update our requirements to latest versions of > all packages. Last time I checked in 22th December 2016 and all our > requirements were the latest versions. In the meantime we can keep using > Python 3

Re: pip install -r requirements.txt fails with Python 3.6 on Windows

2017-01-05 Thread Terry Reedy
On 1/3/2017 3:07 PM, Uri Even-Chen wrote: > What are the reasons to upgrade Python to 3.6? The same as for any new version: New features -- see What's New in 3.6. New bug fixes. New performance improvements. Reasons against: The effort to make sure all dependencies are available for 3.6* Possibl

Re: pip install -r requirements.txt fails with Python 3.6 on Windows

2017-01-05 Thread Uri Even-Chen
Thank you, I'll consider to update our requirements to latest versions of all packages. Last time I checked in 22th December 2016 and all our requirements were the latest versions. In the meantime we can keep using Python 3.5. By the way, Travis CI tests passed with the same requirements and Pyt

Re: pip install -r requirements.txt fails with Python 3.6 on Windows 10

2017-01-03 Thread Terry Reedy
On 1/3/2017 3:07 PM, Uri Even-Chen wrote: What are the reasons to upgrade Python to 3.6? The same as for any new version: New features -- see What's New in 3.6. New bug fixes. New performance improvements. Reasons against: The effort to make sure all dependencies are available for 3.6* Possib

Re: pip install -r requirements.txt fails with Python 3.6 on Windows 10

2017-01-03 Thread breamoreboy
On Tuesday, January 3, 2017 at 8:08:37 PM UTC, Uri Even-Chen wrote: > Thank you, I'll consider to update our requirements to latest versions of > all packages. Last time I checked in 22th December 2016 and all our > requirements were the latest versions. In the meantime we can keep using > Python 3

Re: pip install -r requirements.txt fails with Python 3.6 on Windows 10

2017-01-03 Thread Uri Even-Chen
Thank you, I'll consider to update our requirements to latest versions of all packages. Last time I checked in 22th December 2016 and all our requirements were the latest versions. In the meantime we can keep using Python 3.5. By the way, Travis CI tests passed with the same requirements and Python

Re: pip install -r requirements.txt fails with Python 3.6 on Windows 10

2017-01-03 Thread INADA Naoki
Pillow 3.4.2 provides binary wheel for Python 3.5, but not for 3.6. So your pip can just install wheel on Python 3.5, but it is required to build on Python 3.6. And your machine doesn't have zlib which is required to build Pillow. Easiest solution may just update your requirements to Pillow==4.0

Re: pip install failure for cryptography, gnureadline

2016-03-10 Thread dieter
Pietro Paolini writes: > ... > I am not really familiar with the Py subsystem, even though I have got some > guidance from some colleague, I am getting stuck when installing a list of > packages contained in a file, running such command : > > > pip install -r /home/pietro/projects/cloud-provisioni

Re: pip install mitmproxy - fails on watchdog-0.8.3.tar.gz with "Permission denied" error (Python 2.7.11 on Win XP SP3);

2016-01-26 Thread eryk sun
On Sun, Jan 24, 2016 at 7:27 PM, Terry Reedy wrote: > > More specifically, / is not accepted in paths to be executed. It seems to be > generally accepted in path arguments, as in cd path, or > > C:\Users\Terry>C:\programs\python35\python.exe C:/programs/python34/tem.py An exception that comes to

Re: pip install mitmproxy - fails on watchdog-0.8.3.tar.gz with "Permission denied" error (Python 2.7.11 on Win XP SP3);

2016-01-24 Thread Terry Reedy
On 1/24/2016 5:35 PM, Larry Hudson via Python-list wrote: If the path string is typed directly into Windows where it is parsed by (whatever is the current equivalent of) command.com, forward slashes are NOT accepted. More specifically, / is not accepted in paths to be executed. It seems to be

Re: pip install mitmproxy - fails on watchdog-0.8.3.tar.gz with "Permission denied" error (Python 2.7.11 on Win XP SP3);

2016-01-24 Thread Larry Hudson via Python-list
On 01/23/2016 11:43 AM, Steve Petrie, P.Eng. wrote: [snip] I'm not sure what your exact problem is, but I can say that it isn't this; the Unix-style forward slash is perfectly legal under Windows (and it's even legal to mix and match). ChrisA I never knew that the forward slash is legal under

Re: pip install mitmproxy - fails on watchdog-0.8.3.tar.gz with "Permission denied" error (Python 2.7.11 on Win XP SP3);

2016-01-24 Thread Steve Petrie, P.Eng.
- Original Message - From: "Chris Angelico" To: "Steve Petrie, P.Eng." Cc: Sent: Saturday, January 23, 2016 2:56 PM Subject: Re: pip install mitmproxy - fails on watchdog-0.8.3.tar.gz with "Permission denied" error (Python 2.7.11 on Win XP SP3); In

Re: pip install mitmproxy - fails on watchdog-0.8.3.tar.gz with "Permission denied" error (Python 2.7.11 on Win XP SP3);

2016-01-24 Thread Steve Petrie, P.Eng.
Chris, Thanks for your response -- much appreciated. Please see my remarks embedded below. - Original Message - From: "Chris Angelico" To: "Steve Petrie, P.Eng." Cc: Sent: Saturday, January 23, 2016 10:14 AM Subject: Re: pip install mitmproxy - fails on watchd

Re: pip install mitmproxy - fails on watchdog-0.8.3.tar.gz with "Permission denied" error (Python 2.7.11 on Win XP SP3);

2016-01-24 Thread Chris Angelico
On Sun, Jan 24, 2016 at 8:12 PM, Steve Petrie, P.Eng. wrote: > I know what "upstream" means, in terms of: water flow in a river, or vehicle > flow on a highway, or data flow over a comms link. "upstream" is where a > moving particle was, earlier in time > > But my puzzlement is -- where is "upstre

Re: pip install mitmproxy - fails on watchdog-0.8.3.tar.gz with "Permission denied" error (Python 2.7.11 on Win XP SP3);

2016-01-23 Thread Chris Angelico
On Sun, Jan 24, 2016 at 6:43 AM, Steve Petrie, P.Eng. wrote: > In case other Windows XP "orphans" want to use mitmdump, here's what I > learned (via Google): > > I changed the bang line (wrapping the pathname in double quotes) in file > mitmdump-script.py: > > from: #!e:\a p p s\python27\python.

Re: pip install mitmproxy - fails on watchdog-0.8.3.tar.gz with "Permission denied" error (Python 2.7.11 on Win XP SP3);

2016-01-23 Thread Chris Angelico
On Fri, Jan 22, 2016 at 3:40 AM, Steve Petrie, P.Eng. wrote: > In both failure cases, it looks to me like there is a bug in the pip logic, > that is using a *nix forward slash "/" instead of a double backslash "\\" > before the file name "make.bat". I'm not sure what your exact problem is, but I

Re: pip install PyOpenGL have problem

2014-09-08 Thread Michael Torrie
On 09/08/2014 08:18 PM, Michael Torrie wrote: > On 09/06/2014 11:15 PM, วรรณพงษ์ ภัททิยไพบูลย์ wrote: >> pip install -U PyOpenGL PyOpenGL_accelerate >> :( > > I don't recognize that particular error message... > > If you require assistance you need to copy and paste the output from the > command

Re: pip install PyOpenGL have problem

2014-09-08 Thread Michael Torrie
On 09/06/2014 11:15 PM, วรรณพงษ์ ภัททิยไพบูลย์ wrote: > pip install -U PyOpenGL PyOpenGL_accelerate > :( I don't recognize that particular error message... If you require assistance you need to copy and paste the output from the command so people can know exactly what failed. -- https://mail.p

Re: pip install PyOpenGL have problem

2014-09-06 Thread วรรณพงษ์ ภัททิยไพบูลย์
เมื่อ วันอาทิตย์ที่ 7 กันยายน ค.ศ. 2014, 12 นาฬิกา 8 นาที 34 วินาที UTC+7, วรรณพงษ์ ภัททิยไพบูลย์ เขียนว่า: > I using Windows 8.1 64 Bit. Python 3.4.1 32 Bit. > > I want to install the PyOpenGL. By http://pyopengl.sourceforge.net/. > > > > pip install PyOpenGL have problem > > > > I using