Question on compiling on linux

2016-06-24 Thread Steven Truppe
and 64bit) ? I'm new to Makefiles and ./configure, i used MSVC2010 on windows and try to understand how this things do work under linux - can someone please help me out here ?? Thanks in advance, Steven Truppe -- https://mail.python.org/mailman/listinfo/python-list

Re: Question on compiling on linux

2016-06-24 Thread Steven Truppe
So back to my first question now that you saw everything worked fine, but there is no python.so file, did i miss something when using ./configure ? Am 2016-06-24 um 20:23 schrieb Chris Angelico: On Sat, Jun 25, 2016 at 4:19 AM, Steven Truppe <steven.tru...@chello.at> wrote: But

Where do i find the 32 bit libraries on my 64 bit ubuntu system

2016-06-27 Thread Steven Truppe
Hi all, i want to write an application that works for both 32 bit and 64bit on my 64bit ubuntu system, my problem i only find 64bit libraries under /usr/lib, there is also a path callled /x86_64-linux-gnu/ <- are these the libraries i should use for 32 bit and 64 bit programming ?? --

What the deal with python3.5m.so and python3.5.so ??

2016-06-28 Thread Steven Truppe
Hi all, can someone tell me the difference between python3.5m.so and python3.5.so ?? Tanks in advance, Steven Truppe -- https://mail.python.org/mailman/listinfo/python-list

Re: Question on compiling on linux

2016-06-24 Thread Steven Truppe
That gives me many .so files but no python*.so* file :( Am 2016-06-24 um 20:35 schrieb Steven Truppe: So back to my first question now that you saw everything worked fine, but there is no python.so file, did i miss something when using ./configure ? Am 2016-06-24 um 20:23 schrieb Chris

Re: Question on compiling on linux

2016-06-25 Thread Steven Truppe
at 2:28 PM, Steven Truppe <steven.tru...@chello.at> wrote: That gives me many .so files but no python*.so* file :( Where are you finding these many .so files? There should be libpython3.5m.so in the root of the source tree (alongside `python`). By the way, I'm not sure how you're acc

Re: Could find libpython.so after succesfull compilation.

2016-09-30 Thread Steven Truppe
Damn i'm so stupid... the files where in fron on of my eyes and i was just not able to find then .. On 2016-10-01 02:23, Steven Truppe wrote: Hi all, i've compiled python3.5 and all went fine, i find ./python and it works, most of the make test stuff is working my only problem is that i'm

Could find libpython.so after succesfull compilation.

2016-09-30 Thread Steven Truppe
Hi all, i've compiled python3.5 and all went fine, i find ./python and it works, most of the make test stuff is working my only problem is that i'm not able to find libpython.so am i missing somehting ? Thianks in advance -- https://mail.python.org/mailman/listinfo/python-list

Re: Could find libpython.so after succesfull compilation.

2016-09-30 Thread Steven Truppe
I fond this in the ./configuration help: * --enable-shared disable/enable building shared python library* so i tried: $configure --enabled-shard but i can't still find a library inside my build directory. On 2016-10-01 02:23, Steven Truppe wrote: Hi all, i've compiled python3.5

Re: Question about working with html entities in python 2 to use them as filenames

2016-11-23 Thread Steven Truppe
type= title = Wizo - Anderster Full Album - YouTube type= title = Wizo - Bleib Tapfer / fürn Arsch Full Album - YouTube Traceback (most recent call last): File "./music-fetcher.py", line 39, in title = HTMLParser.HTMLParser().unescape(title) File "/usr/lib/python2.7/HTMLParser.py",

Question about working with html entities in python 2 to use them as filenames

2016-11-22 Thread Steven Truppe
I all, i'm using linux and python 2 and want to parse a file line by line by executing a command with the line (with os.system). My problem now is that i'm opening the file and parse the title but i'm not able to get it into a normal filename: import os,sys import urlib,re,cgi import

Re: Question about working with html entities in python 2 to use them as filenames

2016-11-22 Thread Steven Truppe
I've made a pastebin with a few examples: http://pastebin.com/QQQFhkRg On 2016-11-22 21:33, Steven Truppe wrote: I all, i'm using linux and python 2 and want to parse a file line by line by executing a command with the line (with os.system). My problem now is that i'm opening the file