Posts

Showing posts with the label compilation

How do I compile my Python 3 app to an .exe? [closed]

How do I compile my Python 3 app to an .exe? [closed] How do I convert my Python app to a .exe ? I made a program with tkinter and was wondering how to make it possible for others to use. I use Python 3.3. I searched for a bit but could not find anything. .exe tkinter This question appears to be off-topic. The users who voted to close gave this specific reason: yes, but they are all for 2.7 and below, i use 3.3 – Samir Chahine Jul 28 '13 at 10:32 Okay, but it is still a very common question. My answer was from a quick Google search. – Andy G Jul 28 '13 at 10:38 I added the 3 to your title but, unfortunately, I suspect your question still might get closed. Goo...

Can't properly compile and run program - No Class Def Found Error

Can't properly compile and run program - No Class Def Found Error Source code I'd like to properly compile and run the program, but the solutions I've tried aren't working. javac src/main/java/ReceitoDromo.java Output Note: ReceitoDromo.java uses unchecked or unsafe operations Note: Recompile with -Xlint:unchecked Exception java src.main.java.ReceitoDromo Error: Could not find or load main class src.main.java.ReceitoDromo open the command line, go to the folders where your ReceitoDromo.class file is, and invoke java ReceitoDromo . What is your output? – Daniele Jul 1 at 17:49 ReceitoDromo.class java ReceitoDromo 1 Answer 1 There might be some syntax error in code. Mostly it happens when you use collections without type specifiers. eg- yo...

Undefined reference to symbol 'gzclose' error when getting library - go

Undefined reference to symbol 'gzclose' error when getting library - go When I try to get one of my libraries on my linux machine with the following command: go get -t github.com/bakape/thumbnailer then I get this error message: -# github.com/bakape/thumbnailer /usr/bin/ld: /usr/bin/ld: /usr/local/lib/libGraphicsMagick.a(magick_libGraphicsMagick_la-blob.o): undefined reference to symbol 'gzclose' //lib/x86_64-linux-gnu/libz.so.1: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status People who encountered this error said this is a linking error and they fixed it by adding some additional tags in the Makefile. I did this too, but this did not work for me. I tried so many solutions, but nothing seems to work for me. I'm using the following library: https://github.com/bakape/thumbnailer This is the Makefile: clean: rm -f testdata/*_thumb.* The creator mentioned undocumented zlib dependencies. All of them are installed: z...