Compiling Selenium script using PyInstaller, getting TypeError: an integer is required (got type bytes)

前端 未结 2 1689
萌比男神i
萌比男神i 2021-01-28 01:44

The following is a truncated version of my code, which runs perfectly using Jupyter Notebook. I\'m looking to have it compiled into an .exe, using Pyinstaller.

         


        
相关标签:
2条回答
  • 2021-01-28 02:13

    pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz

    Direct install the latest version can be compatible with python 3.8

    0 讨论(0)
  • 2021-01-28 02:21

    If you are using python 3.8, try downgrading as pyinstaller doesn't support all new python versions

    0 讨论(0)
提交回复
热议问题