I have made scrapy script and it works fun! my client needs me to convert it to exe program I have done it before but for windows users not for mac so My question is there is a method to convert the script to exe?
Asked
Active
Viewed 87 times
0
-
I had the same issue. I figure with `pyinstaller`. But you have install python and add to the path to client' pc. – Murat Demir Jul 16 '21 at 20:22
-
1You can't. The tools that do this like `pyinstaller` cannot cross-compile. To bundle your Python program into an executable that will run on a Mac, you need a Mac. – BoarGules Jul 16 '21 at 20:23
-
thanks for the quick replying – Ahmed Ellban Jul 16 '21 at 20:25
-
Murat Demir can you explain more, please – Ahmed Ellban Jul 16 '21 at 20:26
-
@BoarGules could be right I have been using Mac I had 3 spiders and my partner want to run them every day manually. I use pyinstaller everything goes well with mac – Murat Demir Jul 16 '21 at 20:36
-
have you tried py2bin? – Ricardo Jul 16 '21 at 20:45
-
@ Ricardo No I will search about it – Ahmed Ellban Jul 16 '21 at 20:49
-
@Ricardo how to use it from windows – Ahmed Ellban Jul 16 '21 at 21:05
-
will need an virtrual machine or emulator of some sort – Ricardo Jul 18 '21 at 19:03
-
@AhmedEllban . Usage of pyinstaller with [hidden import can solve your issue](https://stackoverflow.com/a/55339170/10884791) – Georgiy Aug 20 '21 at 20:01