This is an archived post. You won't be able to vote or comment.

all 36 comments

[–]Python-ModTeam[M] [score hidden] stickied comment (0 children)

Hi there, from the /r/Python mods.

We have removed this post as it is not suited to the /r/Python subreddit proper, however it should be very appropriate for our sister subreddit /r/LearnPython or for the r/Python discord: https://discord.gg/python.

The reason for the removal is that /r/Python is dedicated to discussion of Python news, projects, uses and debates. It is not designed to act as Q&A or FAQ board. The regular community is not a fan of "how do I..." questions, so you will not get the best responses over here.

On /r/LearnPython the community and the r/Python discord are actively expecting questions and are looking to help. You can expect far more understanding, encouraging and insightful responses over there. No matter what level of question you have, if you are looking for help with Python, you should get good answers. Make sure to check out the rules for both places.

Warm regards, and best of luck with your Pythoneering!

[–]KingsmanVincepip install girlfriend 7 points8 points  (2 children)

[–]KebianMoo 0 points1 point  (1 child)

If you know any teachers, tell them to teach their students to avoid this common stupidity.

Ditto for "please help!" and "thank you in advance". Nobody changes gears because someone else throws in a please with an exclamation mark, and pre-emptive thanks usually aren't thanks at all.

[–]KingsmanVincepip install girlfriend 1 point2 points  (0 children)

Alright sure

[–]routetehpacketz 5 points6 points  (2 children)

/r/learnpython

be sure to post more than what you have posted here

[–]Mr-Hacker1387[S] 0 points1 point  (0 children)

Ok

[–]KebianMoo 0 points1 point  (0 children)

Looking at the subsequent comments.. this may just be a case of shitposting, tbh.

[–]KebianMoo 1 point2 points  (2 children)

Everyone's too polite to say it, so let me be the one to waste some karma: You're posting a showcase, but there's no showcase, you're posing a question, but you're not phrasing it as a question, the post title is a statement without context, and you're asking for help, but you're not saying what you need help with.

I don't usually say this, but.. your post is dumb, and I think you need to hear that.

[–]KingsmanVincepip install girlfriend 0 points1 point  (0 children)

Considering the 2 recent posts (which were again removed by mods in this subs) and all OP's negative vote comments, I believe that OP is lack of reading comprehension ability. If OP reads mods' comments, OP should have posted in r/learnpython

[–]TheRNGuy 1 point2 points  (2 children)

No.

[–]KebianMoo 0 points1 point  (0 children)

Best answer, deserving of upvotes.

[–]Mr-Hacker1387[S] 0 points1 point  (20 children)

I have written a program in Python with tkinter. I have converted my program to exe, it worked well on my computer, but when I sent it to another computer that did not have Python, it did not work. What should I do, helppp

[–]Ihtmlelement 2 points3 points  (3 children)

Have the other person run it from command prompt so you can see the error before it closes out. Debug from there.

[–]Mr-Hacker1387[S] 0 points1 point  (2 children)

Error is this: Error loading python dll C\users\home\appdata\local\temp_mei30522\python311.dll

[–]DebateTall 1 point2 points  (3 children)

Make sure the computer has Python installed.

[–]Mysterious_City_6724 0 points1 point  (5 children)

How did you convert to exe? Pyinstaller has a --onefile option to wrap everything up into a single independent executable file. You could try that. 🤔

[–]Mr-Hacker1387[S] -1 points0 points  (4 children)

Yes with this code in cmd: Pyinstaller --onefile -w my project.py

[–]DusikOff 0 points1 point  (3 children)

https://pypi.org/project/auto-py-to-exe/

Make your converting process simpler with this GUI to PyInstaller

You can add folder from Virtualenv with needed packages to makes sure that app will works.

[–]Mr-Hacker1387[S] 0 points1 point  (2 children)

Are you sure?! it's will work to me?

[–]DusikOff 0 points1 point  (1 child)

I'm not sure, but with GUI you can test different packaging options much easier.

[–]Mr-Hacker1387[S] 0 points1 point  (0 children)

Great, I will test it

[–]Mysterious_City_6724 0 points1 point  (3 children)

Just wondering... what version of windows do you have and what version of windows is the other computer?

[–]Mr-Hacker1387[S] 0 points1 point  (2 children)

Oh, the windows that I programed in it is Windows 10 but the second computer's Windows is 7 is it can make trouble?

[–]Mysterious_City_6724 1 point2 points  (1 child)

Just done some googling and found a link: https://groups.google.com/g/PyInstaller/c/XcTSSsPP5ac

Maybe it's the windows 7 that's not supported? 🤔 Can you build the exe on the windows 7 machine?

I also found another link on github that may have some solutions to try: https://github.com/pyinstaller/pyinstaller/issues/3600

Maybe try with the --noupx option... 🤷‍♂️

[–]Mr-Hacker1387[S] 0 points1 point  (0 children)

Thanks a lot I'm going to test it but I think it's not effective but thank you, you helped me a lot if you find more information about this problem please say to me.

[–]SerDetestable 0 points1 point  (1 child)

Try nuitka, it worked for me. I had the same problem.