Re: [pypy-dev] pip installation for pypy is slow

2021-11-28 Thread Hao Wang
is object is of type 'pandas._libs.parsers.TextReader' Aborted From: pypy-dev on behalf of Matti Picus Sent: Monday, November 29, 2021 12:31 AM To: pypy-dev@python.org Subject: Re: [pypy-dev] pip installation for pypy is slow On 29/11/21 6:01 am, Hao Wang wrote: > De

Re: [pypy-dev] pip installation for pypy is slow

2021-11-28 Thread Matti Picus
On 29/11/21 6:01 am, Hao Wang wrote: Dear pypy-devs, The pip installation of pypy (pypy -m pip install scipy, for example) is slower than python-pip clean. Is there a way to fix this problem ? Bravo! Hao Wang Thanks for giving PyPy a try. When pre-compiled binary wheels are not available

[pypy-dev] pip installation for pypy is slow

2021-11-28 Thread Hao Wang
Dear pypy-devs, The pip installation of pypy (pypy -m pip install scipy, for example) is slower than python-pip clean. Is there a way to fix this problem ? Bravo! Hao Wang ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/li

Re: [pypy-dev] Pip fails to work

2018-03-24 Thread Matti Picus
On 24/03/18 10:27, Grant Shepherd wrote: PyPy needs more effort cleaning up how it relates info on its website providing better directions on overcoming its reliance on a specific versions of the OpenSSL library. I have been working in I.T. for 30 years and I know when I see a something tha

Re: [pypy-dev] Pip fails to work

2018-03-24 Thread Grant Shepherd
Sent: Tuesday, 20 March 2018 5:27 PM To: Grant Shepherd Cc: pypy-dev@python.org Subject: Re: [pypy-dev] Pip fails to work Did you build PyPy yourself? If so, you didn't compile the ssl module. Not really PyPy's fault... OTOH if this is a distro package/binary, where did you get i

Re: [pypy-dev] Pip fails to work

2018-03-20 Thread Ryan Gonzalez
Did you build PyPy yourself? If so, you didn't compile the ssl module. Not really PyPy's fault... OTOH if this is a distro package/binary, where did you get it from? You can try the portable PyPy binaries: https://github.com/squeaky-pl/portable-pypy -- Ryan (ライアン) Yoko Shimomura, ryo (superce

[pypy-dev] Pip fails to work

2018-03-20 Thread Grant Shepherd
PyPy seems like a great python version Except the extremely painful effort trying to get pip to work Can't connect to HTTPS URL because the SSL module is not available. - skipping ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mai

Re: [pypy-dev] Pip Install Fails Due to cppyy-backend setup.py Bug

2017-09-27 Thread wlavrijsen
Parker, thanks! Both (encoding and tracker) are now fixed. Best regards, Wim -- wlavrij...@lbl.gov--+1 (510) 486 6411--www.lavrijsen.net ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/listinfo/p

[pypy-dev] Pip Install Fails Due to cppyy-backend setup.py Bug

2017-09-26 Thread Parker Boyce
I recently had reason to try to install cppyy using Python 3 and pip. With the use of the wheels for cppyy-cling the process went smoothly enough until pip tried to build cppyy-backend . Building this package by itself results in the following error

Re: [pypy-dev] pip install rbtree fail in pypy env!

2013-11-02 Thread KaShining
0.393133878708 bintrees_fast_rbtree under pypy 0.357424020767 -- Original -- From: "Armin Rigo";; Date: Fri, Nov 1, 2013 05:06 PM To: "KaShining"; Cc: "Dan Stromberg"; "pypy-dev"; Subject: Re: [pypy-dev] pip install rbtree fail

Re: [pypy-dev] pip install rbtree fail in pypy env!

2013-11-01 Thread Armin Rigo
Hi KaShining, Yes, the issue then is that pure Python equivalents are often slower than their C version --- for example, this red_black_tree_mod file is huge for the job (more than 1000 lines), written in a Java-ish style with tons of small overridden methods, but full of properties, recursive fun

Re: [pypy-dev] pip install rbtree fail in pypy env!

2013-10-31 Thread Dan Stromberg
On Thu, Oct 31, 2013 at 8:07 PM, KaShining wrote: > > tks,but > > test-red_black_dict_mod.py under pypy-2.1. consume :3.89574193954 > test-rbtree.py under python2.7.3 > .consume:0.354326009...@gmail.com > >; > Interesting. Do you need good performance? You might consider a treap:

Re: [pypy-dev] pip install rbtree fail in pypy env!

2013-10-31 Thread KaShining
= time.time() print end - begin -- Original -- From: "Dan Stromberg";; Date: Fri, Nov 1, 2013 06:29 AM To: "Armin Rigo"; Cc: "KaShining"; "pypy-dev"; Subject: Re: [pypy-dev] pip install rbtree fail in pypy env! O

Re: [pypy-dev] pip install rbtree fail in pypy env!

2013-10-31 Thread Dan Stromberg
On Thu, Oct 31, 2013 at 1:53 AM, Armin Rigo wrote: > Hi KaShining, > > On Thu, Oct 31, 2013 at 9:32 AM, KaShining wrote: > > src/rbtree.c: In function '__pyx_f_6rbtree_6rbtree_byOffset': > > This is using Cython. Compiling Cython modules with PyPy > kind-of-works but is shaky. > Here's a p

Re: [pypy-dev] pip install rbtree fail in pypy env!

2013-10-31 Thread Amaury Forgeot d'Arc
>>>>>>> > > why? > See this blog post: http://morepypy.blogspot.ch/2011/05/numpy-follow-up.html specially the paragraph starting with "cpyext is slow" > > > -- Original ---------- > *From: * "Armin Rigo";; &

Re: [pypy-dev] pip install rbtree fail in pypy env!

2013-10-31 Thread KaShining
-- From: "Armin Rigo";; Date: Thu, Oct 31, 2013 04:53 PM To: "KaShining"; Cc: "pypy-dev"; Subject: Re: [pypy-dev] pip install rbtree fail in pypy env! Hi KaShining, On Thu, Oct 31, 2013 at 9:32 AM, KaShining wrote: > src/rbtree.c: In f

Re: [pypy-dev] pip install rbtree fail in pypy env!

2013-10-31 Thread Armin Rigo
Hi KaShining, On Thu, Oct 31, 2013 at 9:32 AM, KaShining wrote: > src/rbtree.c: In function '__pyx_f_6rbtree_6rbtree_byOffset': This is using Cython. Compiling Cython modules with PyPy kind-of-works but is shaky. You may have more luck if you upgrade Cython to the latest version, but I don

[pypy-dev] pip install rbtree fail in pypy env!

2013-10-31 Thread KaShining
pypy 2.1 pip install rbtree >>> Downloading/unpacking rbtree Running setup.py egg_info for package rbtree Installing collected packages: rbtree Running setup.py install for rbtree building 'rbtree' extension cc -O2 -fPIC -Wimplicit -I./src -I/pypy/inclu

Re: [pypy-dev] pip

2012-03-02 Thread Aroldo Souza-Leite
Hi list, the error disappeared in pypy-c-jit-53087-2881f17e1ffc-linuxand and I can work on with it. As there are still warnings, I'm appending the console output below for your information. Thanks a lot again. Aroldo --- (pypy)root@aroldo-laptop:/opt/pypy/bin# which easy_install /opt/

Re: [pypy-dev] pip

2012-02-29 Thread Antonio Cuni
On 02/29/2012 06:59 PM, Alex Gaynor wrote: I ran into this recently and just ignored it, it seemed to work ok. However, I'm guessing it's a result of d4dee87e47cc. it's, it's probably because of the autoflush. It should be fixed by f9f3b57f1300 which I just pushed, so tomorrow's nightly shou

Re: [pypy-dev] pip

2012-02-29 Thread Alex Gaynor
On Wed, Feb 29, 2012 at 12:56 PM, Aroldo Souza-Leite wrote: > Hi list, > > I'm getting an error when trying to easy_install pip in PyPy (nightly > build). The error doesn't occur in PyPy-1.8. > > Thanks. > > Aroldo. > > --- > > (pypy)root@aroldo-laptop:/opt/**pypy/bin# which python > /opt/pyp

[pypy-dev] pip

2012-02-29 Thread Aroldo Souza-Leite
Hi list, I'm getting an error when trying to easy_install pip in PyPy (nightly build). The error doesn't occur in PyPy-1.8. Thanks. Aroldo. --- (pypy)root@aroldo-laptop:/opt/pypy/bin# which python /opt/pypy//bin/python (pypy)root@aroldo-laptop:/opt/pypy/bin# which easy_install /opt/pypy/

Re: [pypy-dev] Pip, Pypy, and Win7

2011-11-30 Thread Leonardo Santagada
On Tue, Nov 29, 2011 at 8:53 PM, Yaacov Finkelman wrote: > Thank You! > > pip.exe and pip-2.7.exe are indeed in a subfolder called bin. Can we > add that to the new version of the docs? > > When should I be using pip vs. using pip-2.7? Doesn't matter, both will use pypy-1.7. The two binaries is i

Re: [pypy-dev] Pip, Pypy, and Win7

2011-11-29 Thread Yaacov Finkelman
Thank You! pip.exe and pip-2.7.exe are indeed in a subfolder called bin. Can we add that to the new version of the docs? When should I be using pip vs. using pip-2.7? Thank you again. Jacob On Tue, Nov 29, 2011 at 5:29 PM, Leonardo Santagada wrote: > On Tue, Nov 29, 2011 at 8:20 PM, Yaacov Fi

Re: [pypy-dev] Pip, Pypy, and Win7

2011-11-29 Thread Leonardo Santagada
On Tue, Nov 29, 2011 at 8:20 PM, Yaacov Finkelman wrote: > $ ./pypy-1.6/bin/pip install pygments # for example > > I am not sure how to translate this Instruction. There is no > executable Pip in my Pypy folder. How do I actually install something > with pip? > > Jacob > first, try pypy-1.7 that

[pypy-dev] Pip, Pypy, and Win7

2011-11-29 Thread Yaacov Finkelman
I've been a complete fanboy to Pypy for the past couple of months. After the official Sprint started I was checking the blog every couple of hours to see what wonderful and fascinating ideas people were working on implementing. I just want to thank you all for helping with this fascinating project.