2:51 mins of pure gold information. every single yt tutorial should be like this. MVP
@PyTutorials5 жыл бұрын
Haha, glad you enjoyed it!
@weewoo3415 жыл бұрын
@@PyTutorials Guy, You were the first tutorial I watched about it. It was freakin' working first time ! haha Last time I've watched a Python tutorial about pip, it tooks me 20 minutes to figure it out. But now I have a question. If I want to share this .exe . I must share all files ?? Edit : ( I put -F -w )
@PyTutorials5 жыл бұрын
Everything in the \dist folder is what you need. If you used -F, then there should be only one executable in the dist folder. "dist" stands for distribution.
@weewoo3415 жыл бұрын
@@PyTutorials Ha. And should the reciever have the Python ?
@PyTutorials5 жыл бұрын
No, the whole point of packaging scripts into executables is so you don't need Python on the host.
@DavidEaton985 жыл бұрын
This is genuinely one of the best tutorials I have seen. You speak at a great pace, you are knowledgeable of the subject, you give quick, precise, and yet detailed information. I learned all I needed to know to create an executable in just three minutes. Absolutely amazing, genuinely. Thank you.
@PyTutorials5 жыл бұрын
Thanks man! Glad you liked the format 👍
@intercointerface2127 жыл бұрын
This is a tutorial made perfectly. Someone make this man king of the internet.
@bramfran43266 жыл бұрын
Liked
@mohamedbelkamel54376 жыл бұрын
when i shift+right click i get powershell rather than command prompt
@Venyl6 жыл бұрын
powershell also works
@drissel13126 жыл бұрын
I totally agree!
@ROC4Life966 жыл бұрын
This actually made me laugh, and yes, i agree!
@omarwael61836 жыл бұрын
That is what a tutorial should be like. I have been searching the web for the past hour and you summed it all up in just under 3 minutes. Great job and keep it up!
@PyTutorials6 жыл бұрын
Glad you enjoyed it!
@diogoledermann73933 жыл бұрын
I'm a simple man. I watch a good tutorial, i give it a like.
@lord.farquaad119 ай бұрын
Hey just wanted to say thank you for this. Around 6 yrs ago, I was a junior software engineer working on a tool for our main app, this tutorial saved me from hours to days of headache. Thank you so much! Keep up the good work wherever you are.
@PyTutorials9 ай бұрын
Thank you for this wholesome comment. It warmed my heart 😃
@distortedfocus76986 жыл бұрын
This is like the best python video I've seen yet and it's not even 3 minutes long.
@PyTutorials6 жыл бұрын
I'm glad you liked it!
@mantasreika5 жыл бұрын
Perfect, straight to the point. And no 5 minute introductions
@PyTutorials5 жыл бұрын
Glad you liked it!
@mouradbarakat1236 жыл бұрын
Great Tutorial. Concise and to the point. The world needs more like you!
@PyTutorials6 жыл бұрын
Glad you enjoyed it!
@deadlock1077 жыл бұрын
No bullshit, to the point fast. Thanks you sir!
@PyTutorials7 жыл бұрын
Glad you enjoyed it!
@w_omega6 жыл бұрын
This is what I've been looking for. Keep up the good work and thanks for such a great tutorial brother !
@PyTutorials6 жыл бұрын
Glad you enjoyed it!
@Skailed4 жыл бұрын
i literlarly just choosed this tutorial because its very short and i dont want an ytber who just talks soooo much and doesnt cae to the point, but this was the greatest i could found. Thank you!
@PyTutorials4 жыл бұрын
I'm glad you liked it 👌
@sbutler70695 жыл бұрын
The last part about the icon was really helpful thanks 😂
@PyTutorials5 жыл бұрын
Glad you got some use out of the video!
@jethrojacks95034 жыл бұрын
wow it actually really works for me eve pip installations were a big problem this has changed allot :)
@PyTutorials4 жыл бұрын
I'm glad you got it working 👍
@erfan_ops2 жыл бұрын
Bro explaned this much in only 3 minuts, you are a legend
@amdPeek7 жыл бұрын
Man, i want to thank you for your super, easy and simple tutorial, after hundreds of websites and videos, i found the perfect tutorial ;) Thank you again ;)
@graju20007 жыл бұрын
You also taught me how to install modules to python thank you sir
@sangamadhikari79834 жыл бұрын
This guy summed up 10-minutes of other youtuber talks in 2:51. No more none sense, straight on point.
@aymancassim89445 жыл бұрын
Woow never seen something that was so fast and very good Thx to you I could do it Continue like that dude :)
@PyTutorials5 жыл бұрын
I'm glad you like the format!
@zoomzoomchannel7 жыл бұрын
ГОСПАДИ ЕДИНСТВЕННЫЙ НОРМАЛЬНЫЙ УРОК НА Ю ТЮБЕ!!! СПАСИБО thank you!!!
@psibotfx59547 жыл бұрын
jesus the only sensible tutorial on youtube!!! thank you!!! is what it translates to agreed comrade, agreed
@АлексТраск-б2ж7 жыл бұрын
Не устанавливается Pyinstaller....Как решить???
@PyTutorials6 жыл бұрын
What errors appeared when you executed "pip install pyinstaller"?
@dickpussyassnigga85435 жыл бұрын
it says that pip is not an internal, external, operable, or batch file
@MMABeijing6 жыл бұрын
What? This is amazing quality, very dense yet very didactic, easy to follow thanks to the command appearing on screen. I wish I had found your channel before but I am very appreciative to have found it today. Thank you. FIrst video, immediate like and sub. You are amazing!
@PyTutorials6 жыл бұрын
Thanks heaps for this comment! I'm glad you like the videos.
@rohanjamieson7097 жыл бұрын
Would this be runnable by someone I sent it to without Python? Also nice tutorial. The pace is perfect : )
@PyTutorials7 жыл бұрын
Yes
@ApplySkills7 жыл бұрын
Finally a tutorial that works. Also how do i make it if my program depends on files such as .pngs it will also compile the png into the exe, so it can run without having to be in the same directory as the image
@PyTutorials7 жыл бұрын
If you go to kzbin.info/www/bejne/bH2mZIaMbN6Hgrs and watch from 3:25, I show you how to compile the image into the executable. Make sure to add the code to your script and wrap it around all usages of the image in the script. If you follow along correctly it should work. Has never failed for me.
@TheGagi827 жыл бұрын
I have a version 3.5.2 of Python and he is installed in AppData...local?
@PyTutorials7 жыл бұрын
What's the issue here? If it's adding the scripts folder, then use the scripts folder from python in appdata? No brainer really.
@TheGagi827 жыл бұрын
When i want to create a new path for my directory this window is not the same in Windows 7 at all,it offers me to add variable name and bellow variable value.
@PyTutorials7 жыл бұрын
Ah, you are correct. Add a semicolon to the end of the current path that comes up (';') and then put the directory after that and save it.
@CanvasMC4 жыл бұрын
man, thanks so much for this. Respect from Sydney!
@PyTutorials4 жыл бұрын
Glad it helped!
@007MrNiko6 жыл бұрын
For everyone who have problem with installation and pip problem. When you set up 'Path' *just add in the end \*
@axvex5954 жыл бұрын
😂 you weren't even tryna hide it, you turned the keylogger into an exe to send it to victims 😆
@PyTutorials4 жыл бұрын
Na, I just turned it into an exe for a demo but good spotting
@mohamedsuhailirfankhazi66284 жыл бұрын
This is how a tech tutorial should be. I've literally seen people make 10 minute tutorials to explain something that could have been summed up in 30 seconds, I am not even kidding.
@PyTutorials4 жыл бұрын
Thanks man. I rather this format also as you lose less time but there seem to be quite a few people that hate the speed.
@ShahidulIslamcse6 жыл бұрын
Thank you so much for the tutorial and the program.
@PyTutorials6 жыл бұрын
Glad you enjoyed it!
@Vangeliss4 жыл бұрын
Me: Wow I just compiled my first executive program! I am so excited!! AVG: I 'm gona end this guy's whole career! >:-( Also AVG: Threat Secured. We've moved myprogram.exe to your quarantine because it is infected!
@PyTutorials4 жыл бұрын
Unfortunately, some anti-virus vendors think that the output is a virus/malware. It has been noted in a GitHub issue but unfortunately, this one is on the vendor and there is nothing we can do: github.com/pyinstaller/pyinstaller/issues/2501#issuecomment-286230354
@RahatulIslamUdoy4 жыл бұрын
@@PyTutorials But windows defender also detects the exe file as suspicious
@PyTutorials4 жыл бұрын
Windows defender is a form of anti-virus software, so my answer will be the same as if it were AVG/ESET/ect..
@davza96294 жыл бұрын
This is by far the best .Py to .exe tutorial on the platform I really appreciate the fact that you show us how to add the icon and remove the additional files and the console. Thank you very much!
@PyTutorials4 жыл бұрын
Cheers! Glad you found it useful 👍
@meloonaticmelons7 жыл бұрын
Excellent! I can now compile things much more easily and more efficiently. (Better than CX Freeze)
@PyTutorials7 жыл бұрын
Much better than ex freeze
@meloonaticmelons7 жыл бұрын
+PyTutorials I know right thanks man
@ssembeds5226 жыл бұрын
Great work sir, very usable for me. explain really nicely in just less then 3 mins!! Thank You v much for this quick tutorial.
@PyTutorials6 жыл бұрын
I'm glad you liked it!
@raysunclimbing4 жыл бұрын
LOVE IT. Great video. Hate people who take 10 minutes to get to the actual point of the video. You are not one of those people :) Very easy to follow. Took some notes for future reference, lol ;)
If the console write the AttributeError: module 'enum' has no attribute 'IntFlag', then in the console write pip uninstall enum34 (I useing Python 3.6)
@PyTutorials6 жыл бұрын
Wow, is that really a fix?
@colonelnoob32695 жыл бұрын
Thank god someone that actually cares about making quality content. Not often one can say that these days. First video I watched from you was how to make an auto clicker! all of your videos are short and to the point! defo deserves a sub
@PyTutorials5 жыл бұрын
I'm glad you like the format!
@user-ct7ho5de3r7 жыл бұрын
Traceback (most recent call last): File "", line 1, in import pynput ImportError: No module named 'pynput'
@PyTutorials7 жыл бұрын
Try reinstalling pynput
@gianni164 жыл бұрын
Did it work for you ? Because I have the same problem wtih the library named PIL and I'd like to know how to solve it
@user-ct7ho5de3r4 жыл бұрын
@@gianni16 No idea man I don't remember
@PyTutorials4 жыл бұрын
For PIL, if you are using Python 3, you will want to install "Pillow" using "python -m pip install Pillow"
@vatsalmewada13896 жыл бұрын
pyinstaller is creating an empty Dist folder!! Why!!? Is there any way to solve this??
@PyTutorials6 жыл бұрын
Are you looking at the output? There will most likely be errors at the end that you are ignoring.
@vatsalmewada13896 жыл бұрын
Yupp
@vatsalmewada13896 жыл бұрын
I used "cx_freeze" and it works
@romuedorh95266 жыл бұрын
@@vatsalmewada1389 how i have the same problem
@vatsalmewada13896 жыл бұрын
romu edorh have you installed qpython?
@bedoe96845 жыл бұрын
You dont know how much I've been looking for this video. I wish you all success my dude. You've helped a miserable guy here!!
@PyTutorials5 жыл бұрын
Haha, I'm glad it was useful for you!
@baymaxbighero61427 жыл бұрын
Thank you so much!! :) I love your tutorials! I have a question After I convert to .exe how to run automatically when windows starts up? Sorry for my english. Thanks!
@PyTutorials7 жыл бұрын
Put the file or a shortcut to the file in C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
@seigma53407 жыл бұрын
unfortunately I tried it and, on windows 8.1, I have error at start. I put the shortcut on that folder, and all the executable on "C:\Program Files", the logs are saved on a public folder, so there aren't privileges issues. Nothing works, every time at starts it pops up "failed to launch coco.py".
@PyTutorials7 жыл бұрын
They asked how to run an .exe automatically when windows starts up, not a .py. By the looks of the error you have put there, you have put a .py file in the startup folder. To run the .py you will need to have a .bat file in the startup folder calling "python " and then your python file some where else (no in the startup folder).
@seigma53407 жыл бұрын
Ye, I mean, the shortcut refers to the .exe file on the folder under "C:\Program Files". I was wrong, the error refers to the executable, not the py file, since i made the executable using the .pyw file
@PyTutorials7 жыл бұрын
Does the .exe run when you run it manually?
@rootLocal106 жыл бұрын
You're the best!!
@PyTutorials6 жыл бұрын
I'm glad you enjoyed it!
@OoMikkioO2 жыл бұрын
I don't really need this information right now, as I can't even make my software work properly, but God damn a nice tutoral. One of the few where the comments aren't lying. Short and concise and full of all the information you'd wanna know. Just goes to show that you don't have to make 10-20 minute videos about a topic.
@PyTutorials2 жыл бұрын
Cheers!
@arcanerstudios7 жыл бұрын
C:\Users\username\Downloads\Compressed>pyinstaller file_name.py 'pyinstaller' is not recognized as an internal or external command, operable program or batch file.
@PyTutorials7 жыл бұрын
Did you install pyinstaller like I showed in the video? Or did you just skip it or ignore errors?
@yoaye43056 жыл бұрын
PyTutorials old as hell but the reason it doesn't work is Windows 7 CMD. Trying to figure out the prefix to use here myself (ie instead of "pip" you use "py -m pip")
@Artuuuuri8 жыл бұрын
Indexerror: tuple index out of range =/ =(
@PyTutorials8 жыл бұрын
At what time is your error appearing?
@Artuuuuri8 жыл бұрын
1:25 pyinstaller pythonfile
@Artuuuuri8 жыл бұрын
And all created folders(dist and build) are empty
@PyTutorials8 жыл бұрын
I can't fix this unless I actually see the problem. I'm no magician.
@Artuuuuri8 жыл бұрын
Do you have facebook or email, I could send you the image of the error if it is not busy
@thearcticfox3436 жыл бұрын
even after 2 years i still find this useful
@PyTutorials6 жыл бұрын
I'l glad to hear!
@markusg.68126 жыл бұрын
pyinstaller --onefile --hidden-import tkinter myscript.py for use with tkinter!
@АнастасияКарцева-ю4х6 жыл бұрын
Please explain how to input it correctly
@АнастасияКарцева-ю4х6 жыл бұрын
There are spaces in between "pyinstaller --onefile --hidden-import" which I didn't notice. And now there is another problem - Python 3.7 is not supported by pyinstaller :( Found on github.com/pyinstaller/pyinstaller/issues/3219#event-1812488416
@PyTutorials6 жыл бұрын
You are correct, I have also noted this support issue in the description clearly.
@markusg.68126 жыл бұрын
I also had this problem when i started programming, so i just saved my file, and then uninstalled python3.7, i then downloaded 3.6 instead
@zeke33953 жыл бұрын
The best tutorial ever. This guys the best, even after 5 years he's helping out people who face problems while converting the file. He helped me alot, he deserves the subs. You're underated af. Massive respect 👍
@PyTutorials3 жыл бұрын
Cheers man 👌
@ВладимирФилин-щ3ь7 жыл бұрын
спасибо
@livingwikipedia19522 жыл бұрын
I've been struggling with this so much, now it finally works! :D
@alimahmoud71483 жыл бұрын
few minutes! great explanation! THANK YOU!!
@PyTutorials3 жыл бұрын
Glad it was helpful!
@BenesTV3 жыл бұрын
Efficient explanation. Works great. Thank you very much.
@PyTutorials3 жыл бұрын
Great to hear!
@JawadAli-sk8bn5 жыл бұрын
bro you made my life easy , I made a tcp reverse shell in python, and wanted to change it into an exe file, I couldn't for hours, after watching your tutorial i was able to turn the script into a single executable file.
@PyTutorials5 жыл бұрын
I'm glad the tutorial was helpful!
@JawadAli-sk8bn5 жыл бұрын
@@PyTutorials yeah i subscribed good tutorial
@enriquecalle35974 жыл бұрын
Thanks for this video, I needed to eliminate a big problem
@imnota7 жыл бұрын
Thanks a lot, finally someine making it clear. Every tutorial is like "use this command" but they don't show in what I was supposed to use it, and none of the other tutorials I saw did the first thing with the path.
@njpromethium5 жыл бұрын
wow I'm impressed by this high quality, straight forward tutorial! keep making these videos!
@PyTutorials5 жыл бұрын
Thanks man!
@SnugLife7 жыл бұрын
Hey, thank you for this guide. Worked as intended.
@PyTutorials7 жыл бұрын
Awesome!
@archilzhvania62425 жыл бұрын
Well explained and also answering the comments. Thanks, man.
@PyTutorials5 жыл бұрын
Glad you found it useful!
@alwin59954 жыл бұрын
Pretty neat. You are god of Python tutorials.
@PyTutorials4 жыл бұрын
Haha, cheers
@avakanksh4 жыл бұрын
hey man you are the best ! hope even others also follow your same style then youtube will be awesome !!!!!!!!!!!!!!
@PyTutorials4 жыл бұрын
Cheers man 👌
@locnguyentan16576 жыл бұрын
i spent 2 hours reading threads and topics about this and still they dont seem as informative as you do. Thank you sir.
@PyTutorials6 жыл бұрын
Glad you enjoyed it!
@locnguyentan16576 жыл бұрын
just tried with my system. the path configuration i couldnt do it your way as am using windows 8 atm. For this i need to run "set path=%path%;C:\ython27". Anyway the rest is just as it is. Thanks again
@quintencabo7 жыл бұрын
This is what you call an amazing tutorial. Thanks
@PyTutorials7 жыл бұрын
Glad you enjoyed it!
@Rubbernecker2 жыл бұрын
Excellent video!! Direct, to the point and very clear!
@PyTutorials2 жыл бұрын
Cheers!
@Nick-yz5zx6 жыл бұрын
very good video, thank you, hung on this for more than a week, until I saw your tutorial
@PyTutorials6 жыл бұрын
Glad you enjoyed it! Getting into this sort of stuff for the first time can be confusing.
@danielfabian7314 жыл бұрын
PURE GOLD, THANKS MAN
@mikeydubs_tv5 жыл бұрын
Awesome tutorial man! I was reading documentation for hours and didn't get this far!
@PyTutorials5 жыл бұрын
Glad you enjoyed it!
@ritwickjoshi5 жыл бұрын
Perfection at it's finest, perfectly executed, nicely understood. Good Job Brother..!
@PyTutorials5 жыл бұрын
Glad you enjoyed it!
@pavittarkumarazad32594 жыл бұрын
This is what a tutorial is called. Not "Hey guys! wassup. Welcome to BLAA BLAA BLAA". This is to the point gold video.
@PyTutorials4 жыл бұрын
Cheers 👍
@parkourbee24 жыл бұрын
This was a great tutorial, still works in 2020.
@PyTutorials4 жыл бұрын
Glad it was helpful 👍
@PPV00774 жыл бұрын
@@PyTutorials why don't u upload anymore?
@PyTutorials4 жыл бұрын
Just looking for some time - I'm keen to do more, just have gotten busy
@Marno_YouTube6 жыл бұрын
Thank you for the simple but amazingly brilliant tutorial. You were the first person that made it so easy to converting a py to exe.
@PyTutorials6 жыл бұрын
Glad you enjoyed this! I have anther video coming out soon that covers an interface I built to convert py to exe easier
@shivamrana38005 жыл бұрын
Thanks a lot. Keep doing the great work!!
@PyTutorials5 жыл бұрын
Glad you found the tutorial useful!
@thebilbe4 жыл бұрын
Clear and concise. Kudos!
@PyTutorials4 жыл бұрын
Cheers!
@bitpilot798 жыл бұрын
Short but very informative, thank you.
@yosefaregahegn16824 жыл бұрын
The tutorial was very amazing and helpfull!!!! Thank you very much for sharing such knowledge!!!
@PyTutorials4 жыл бұрын
I'm glad you found it helpful 👍
@d3blogger5 жыл бұрын
Awesome tutorial! Thank you for making it so clear and concise. Keep on making them!
@PyTutorials5 жыл бұрын
Glad you enjoyed it!
@Endlessvoidsutidos5 жыл бұрын
great vid man thanks for making this. Question though is their a UI at all for pyinstaller ?
@PyTutorials5 жыл бұрын
Yes, try out github.com/brentvollebregt/auto-py-to-exe
@yepp96434 жыл бұрын
Thank you! Straight to the point.
@PyTutorials4 жыл бұрын
I'm glad you liked it 👌
@ScrotoloOttavoNano5 жыл бұрын
Just perfect! Straight to the point, usefull, just what we all needed!
@PyTutorials5 жыл бұрын
Glad you found it useful!
@ahmedbadal37956 жыл бұрын
man u are just awesome ...plz make full series of.tutorials
@PyTutorials6 жыл бұрын
I would really like to but these take hours per video to make and I need the time.
@ahmedbadal37956 жыл бұрын
PyTutorials okey that is fair
@PriteshGuptaa4 жыл бұрын
awesome tutorial sir. up to the point. nothing else.
@PyTutorials4 жыл бұрын
Glad you found it helpful 👍
@maximusfantabulous25595 жыл бұрын
This is brilliant, so well explained
@PyTutorials5 жыл бұрын
Thank you! Glad you enjoyed it.
@niladrithedon8 жыл бұрын
Thanks a lot for the easy and simple tutorial. Thanks a lot! Clarified a lot of doubts.
@ZooperPlayz5 жыл бұрын
best tutorial I ever found till now
@PyTutorials5 жыл бұрын
Glad you found it useful!
@hallinhko6 жыл бұрын
works great, thank you. been looking for 2 days to try and do this :). now i just need to learn how to do some more programming. thanks again
@PyTutorials6 жыл бұрын
Glad you enjoyed it!
@pomonoli6 жыл бұрын
Very nice video! It's so hard to find a good tutorial on this and you just explained it super easy. One more small tip: I program at work and I don't have admin rights so I cannot add a path like shown. If anyone else has this problem: you can just open cmd and manually go to the scripts folder with the 'cd' command and pip install will work just the same.
@PyTutorials6 жыл бұрын
I'm glad you liked it! Also that tip is very helpful, a lot of people that watch these videos don't understand little tricks like that (or even absolute references)
@pomonoli6 жыл бұрын
Thanks for answering on my comment. I'm actually really new to python, started a few weeks ago with this guide: automatetheboringstuff.com/, it's really great. But now I have the chance to ask you I have one question: I often come across tutorials that use 'python' as a command in cmd, but that doesn't work for me and when I look for a solution it says I need to add the path (which I can't), but it also doesn't work when I manually go to the path as I described. Is there any way to make it work without having admin rights?
@pomonoli6 жыл бұрын
Oh wait I just realised that was kind of a stupid question. Python probably isn't a command but it just launches python.exe and I think my command line was in the scripts directory for pip but python.exe isn't there so... I'll check it tomorrow but I think I just figured it out.
@PyTutorials6 жыл бұрын
When using cmd, you can cd to where your python instillation is located. Make your current working directory the same as where python.exe is located. Now you can simply call ./python.exe
@yingwoeiooi85376 жыл бұрын
A super helpful tutorial!
@PyTutorials6 жыл бұрын
Glad you enjoyed it!
@dev-and-life6 жыл бұрын
Thanls for infomative video. Please let me know which video capture you use for recording and also which editor you use.
@PyTutorials6 жыл бұрын
I use OBS for video, Audacity for audio and VideoPad for editing
@radioactivememes49644 жыл бұрын
Thank you really man, I really needed this help
@PyTutorials4 жыл бұрын
I'm glad you found it useful 👍
@rohan10025 жыл бұрын
I'm saying the same thing that this is the best tutorial video without any shitty things
@PyTutorials5 жыл бұрын
I'm glad you enjoyed it!
@rohan10025 жыл бұрын
@@PyTutorials I can't believe you replied me. Thanks for making my day
@youtubestrashcan30535 жыл бұрын
Thank you for a very good informational video. Straight to the point.
@PyTutorials5 жыл бұрын
Glad you liked the format!
@dannydeadlifts6 жыл бұрын
Nicely explained. thanks dude!
@PyTutorials6 жыл бұрын
Glad you enjoyed it!
@dannydeadlifts6 жыл бұрын
@@PyTutorials yes I did very much. out of topic but are u by any chance a Kiwi?
@PyTutorials6 жыл бұрын
Haha, yep. Good spotting
@dealingg3 жыл бұрын
Thanks you are the best actually subscribed
@PyTutorials3 жыл бұрын
Glad you found it useful 👍
@muhammadosama33586 жыл бұрын
Your tutorials are awesome! btw do you have tutorials on deep learning/regression with python?
@PyTutorials6 жыл бұрын
Unfortunately no sorry. I have not had a need to dabble in that area yet.
@crtl96975 жыл бұрын
What a precise video. I have referenced to this atleast twice now :)
@PyTutorials5 жыл бұрын
I'm glad it has been useful!
@Animefield3302 жыл бұрын
when i run the application only the console appears and disappears and my app has not launched how to fix this? Pls Help
@PyTutorials2 жыл бұрын
Assuming the python script runs properly by itself then this would have been caused by an incorrect configuration or third-party modules. The best way to find what the issue is, is to add `--debug all` to your command and then re-package it. This will mean the exe is now in a debugging mode. Open up cmd and then run the exe using cmd e.g. "C:/folder/path/myexe.exe". Any errors will be preserved in the console which you were previously missing.
@bar___2 жыл бұрын
Can't believe it worked! I made my first cool little program that I can share with friends
@bar___2 жыл бұрын
PS: I had a "invalid continuation byte" error, but I found out that was because one of the characters in the code was an "ä", so I changed it to "a" and it worked. Something to do with utf-8 encoding.
@PyTutorials2 жыл бұрын
Excellent! Awesome to hear!
@Jackaldev5 жыл бұрын
Thank you for this wonderful, straight to the point tutorial. Edit: Subbed
@PyTutorials5 жыл бұрын
Thanks man!
@jenkingram49128 жыл бұрын
your tutorial video has helped a lot to me and others. thank u very much sir and keep it up
@xfjob6 жыл бұрын
Short and simple, I like it
@PyTutorials6 жыл бұрын
Glad you enjoyed it!
@_caracalla_7 жыл бұрын
Very thanks to you. This is the only simple and nice video about pyinstaller
@thereddishknight4263 жыл бұрын
help please, when i try to do pyinstaller [my file name] it says that pyinstaller is not recognised as an internal or external command, operable program or batch file.
@PyTutorials3 жыл бұрын
Did you install PyInstaller as shown in the video?
@thereddishknight4263 жыл бұрын
@@PyTutorials Yeah i did
@PyTutorials3 жыл бұрын
Did you have to add a folder to the PATH variable to get pip working? If so, what did you add?