当前位置:   article > 正文

python用pyinstaller打包.py文件及遇到的问题_pyinstaller打包让别人看不见.py文件

pyinstaller打包让别人看不见.py文件

1.pyinstaller的下载

在cmd中输入一下代码来下载pyinstaller

pip install pyinstaller

2.打包类型

一共有三种类型,在要打包的文件夹中输入要打包的代码

  1. Pyinstaller -F file.py # 打包exe
  2. Pyinstaller -F -w file.py # 不带命令行的打包
  3. Pyinstaller -F -w -i file.ico file.py # 将指定图片变成exe文件图标

3.问题1

TypeError: _get_sysconfigdata_name() missing 1 required positional argument: 'check_exists'

在cmd中输入conda remove typing,如果还是不成功,那就要手动更改了。输入一下代码

  1. import sysconfig
  2. print(sysconfig.__file__)

得到sysconfig.py这个文件的路径,打开这个,找到_get_sysconfigdata_name函数,将其中的check_exists参数默认值设置为True。即_get_sysconfigdata_name(check_exists=True)。

4.问题2

RuntimeError: No metadata path found for distribution 'greenlet'.

在cmd中输入一下代码

pip  install --ignore-installed greenlet 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/590920
推荐阅读
相关标签
  

闽ICP备14008679号