Re: Problems compiling Python 3.4 on Ubuntu

2014-02-03 Thread Chris Angelico
On Tue, Feb 4, 2014 at 1:34 PM, Rustom Mody wrote: > Just curious: How do you go "digging for stuff starting with 'z'" ? > > OR: How do you grep inside apt? > > I know "dpkg -S pattern" > > It helps to connect pattern with package > But no good if pattern is common -- Other day I was struggling wi

Re: Problems compiling Python 3.4 on Ubuntu

2014-02-03 Thread Rustom Mody
On Tuesday, February 4, 2014 12:41:03 AM UTC+5:30, Chris Angelico wrote: > On Tue, Feb 4, 2014 at 6:05 AM, Zachary Ware wrote: > > On Mon, Feb 3, 2014 at 12:48 PM, Chris Angelico wrote: > >> Technically that gets everything you need to compile Python 3.3... > >> wasn't there one more library needed

Re: Problems compiling Python 3.4 on Ubuntu

2014-02-03 Thread Chris Angelico
On Tue, Feb 4, 2014 at 6:05 AM, Zachary Ware wrote: > On Mon, Feb 3, 2014 at 12:48 PM, Chris Angelico wrote: >> On Tue, Feb 4, 2014 at 2:50 AM, Christian Heimes >> wrote: >>> On 03.02.2014 16:14, Ram Rachum wrote: Worked! Thanks Ervin! >>> >>>$ sudo apt-get build-dep python3.3 >>> >>>

Re: Problems compiling Python 3.4 on Ubuntu

2014-02-03 Thread Zachary Ware
On Mon, Feb 3, 2014 at 12:48 PM, Chris Angelico wrote: > On Tue, Feb 4, 2014 at 2:50 AM, Christian Heimes wrote: >> On 03.02.2014 16:14, Ram Rachum wrote: >>> Worked! Thanks Ervin! >> >>$ sudo apt-get build-dep python3.3 >> >> will install everything you need to compile Python 3.4 on Debian a

Re: Problems compiling Python 3.4 on Ubuntu

2014-02-03 Thread Chris Angelico
On Tue, Feb 4, 2014 at 2:50 AM, Christian Heimes wrote: > On 03.02.2014 16:14, Ram Rachum wrote: >> Worked! Thanks Ervin! > >$ sudo apt-get build-dep python3.3 > > will install everything you need to compile Python 3.4 on Debian and > Ubuntu. Good luck! :) Technically that gets everything you

Re: Problems compiling Python 3.4 on Ubuntu

2014-02-03 Thread Rustom Mody
On Monday, February 3, 2014 8:44:01 PM UTC+5:30, cool-RR wrote: > On Mon, Feb 3, 2014 at 1:08 PM, Ervin Hegedüs wrote: > > > try this: > > sudo apt-get install libssl-dev > Worked! Thanks Ervin! In general its a good idea to *look at* what you get with apt-get build-dep python3 You need not

Re: Problems compiling Python 3.4 on Ubuntu

2014-02-03 Thread Christian Heimes
On 03.02.2014 16:14, Ram Rachum wrote: > Worked! Thanks Ervin! $ sudo apt-get build-dep python3.3 will install everything you need to compile Python 3.4 on Debian and Ubuntu. Good luck! :) Christian -- https://mail.python.org/mailman/listinfo/python-list

Re: Problems compiling Python 3.4 on Ubuntu

2014-02-03 Thread Ram Rachum
Worked! Thanks Ervin! On Mon, Feb 3, 2014 at 1:08 PM, Ervin Hegedüs wrote: > Hello, > > On Mon, Feb 03, 2014 at 02:50:15AM -0800, cool-RR wrote: > > Hi, > > > > I'm trying to install Python 3.4b3 on Ubuntu. Since compilation seems to > be the only way, I'm trying that. > > > > I downloaded the

Re: Problems compiling Python 3.4 on Ubuntu

2014-02-03 Thread Ervin Hegedüs
Hello, On Mon, Feb 03, 2014 at 02:50:15AM -0800, cool-RR wrote: > Hi, > > I'm trying to install Python 3.4b3 on Ubuntu. Since compilation seems to be > the only way, I'm trying that. > > I downloaded the source, I changed Setup.dist to have this: > > SSL=/usr > _ssl _ssl.c \ >

Problems compiling Python 3.4 on Ubuntu

2014-02-03 Thread cool-RR
Hi, I'm trying to install Python 3.4b3 on Ubuntu. Since compilation seems to be the only way, I'm trying that. I downloaded the source, I changed Setup.dist to have this: SSL=/usr _ssl _ssl.c \ -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \ -L$(SSL)/lib -lssl -l