Skip to content
Advertisement

Tag: pyinstaller

Pyinstaller error on scrapy?

I am using scrapy importing it. I built the python file using pyinstaller. After building it I ran the file ./new.py. But the error pops: Answer You did not use Pyinstaller properly when you had built your stand-alone program. Here is a short, layman’s description of how Pyinstaller works: Pyinstaller bundles the Python interpreter, necessary DLLs (for Windows), your project’s

Reducing size of pyinstaller exe

I have a simple pandas pyinstaller exe which is over 40MB. My exe example: 40MB+ for this seems a bit overkill. How can I reduce this as much as possible? One method: This however is not practical considering how big the exclusion list would be. How do I select a folder for pyinstaller to get modules from and exclude everything

How to create OS X app with Python on Windows

I need to automate a cross-platform application build. Entire build runs on Windows machine. Part of it is written in Python and compiles for OS X. Currently this part of build is done manually on OS X. I tried pyinstaller but it looks like it only building for the platform that it is running on. I also tried py2app but

pyinstaller [ErrNo 22]

I’m trying to use Pyinstaller to make an exe of my python code to easily distribute. Every time I try run pyinstaller.py I get an error “[Errno 22] invalid mode (‘rb’) or filename: ”” I’ve seen a few other posts on this issue saying the problem is usually caused by hardcoding in filepaths for reading data, but all my filepaths

Advertisement