Re: [openstack-dev] On the usage of pip vs. setup.py install

2013-09-24 Thread Thomas Goirand
On 09/25/2013 12:20 AM, Monty Taylor wrote: > > > On 09/24/2013 12:11 PM, Thomas Goirand wrote: >> Hi Monty, >> >> On 09/24/2013 09:44 AM, Monty Taylor wrote: >>> Instead of: >>> >>> "python setup.py install" >>> >>> Run: >>> >>> "pip install ." >> >> No way that this happens on the packaging sid

Re: [openstack-dev] On the usage of pip vs. setup.py install

2013-09-24 Thread Monty Taylor
On 09/24/2013 12:11 PM, Thomas Goirand wrote: > Hi Monty, > > On 09/24/2013 09:44 AM, Monty Taylor wrote: >> Instead of: >> >> "python setup.py install" >> >> Run: >> >> "pip install ." > > No way that this happens on the packaging side. Buildd have no network > access (on purpose), and we must

Re: [openstack-dev] On the usage of pip vs. setup.py install

2013-09-24 Thread Anita Kuno
My plague is feeling much better now, thanks. Keeping using pip! Anita. On 09/23/2013 09:43 PM, Joshua Harlow wrote: I wonder who got the plague if u got the food :-/ Sent from my really tiny device... On Sep 23, 2013, at 8:07 PM, "Michael Basnight" wrote: But I got suddenly full. Interes

Re: [openstack-dev] On the usage of pip vs. setup.py install

2013-09-24 Thread Thomas Goirand
Hi Monty, On 09/24/2013 09:44 AM, Monty Taylor wrote: > Instead of: > > "python setup.py install" > > Run: > > "pip install ." No way that this happens on the packaging side. Buildd have no network access (on purpose), and we must not do any network access when building. So I wonder what this

Re: [openstack-dev] On the usage of pip vs. setup.py install

2013-09-23 Thread Joshua Harlow
I wonder who got the plague if u got the food :-/ Sent from my really tiny device... On Sep 23, 2013, at 8:07 PM, "Michael Basnight" wrote: > But I got suddenly full. Interesting thing that is. > > Sent from my digital shackles > >> On Sep 23, 2013, at 7:16 PM, Joshua Harlow wrote: >> >> I

Re: [openstack-dev] On the usage of pip vs. setup.py install

2013-09-23 Thread Michael Basnight
But I got suddenly full. Interesting thing that is. Sent from my digital shackles > On Sep 23, 2013, at 7:16 PM, Joshua Harlow wrote: > > I ran that but world peace didn't happen. > > Where can I get my refund? > > Sent from my really tiny device... > >> On Sep 23, 2013, at 6:47 PM, "Monty

Re: [openstack-dev] On the usage of pip vs. setup.py install

2013-09-23 Thread Joshua Harlow
I ran that but world peace didn't happen. Where can I get my refund? Sent from my really tiny device... On Sep 23, 2013, at 6:47 PM, "Monty Taylor" wrote: > tl;dr - easy_install sucks, so use pip > > It is common practice in python to run: > > python setup.py install > or > python setup.py d

Re: [openstack-dev] On the usage of pip vs. setup.py install

2013-09-23 Thread Dolph Mathews
On Mon, Sep 23, 2013 at 8:44 PM, Monty Taylor wrote: > tl;dr - easy_install sucks, so use pip > > It is common practice in python to run: > > python setup.py install > or > python setup.py develop > > So much so that we spend a giant amount of effort to make sure that > those always work. > > For