大家好,又见面了,我是你们的朋友全栈君
一、IDE配置解释器
二、配置pip镜像 按照软件包
(参考博文:https://www.jianshu.com/p/fa36fe63badc)
pip国内的一些镜像
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 Simple Index
【执行命令】pip install paramiko -i http://mirrors.aliyun.com/pypi/simple/
【配置永久生效】全局配置文件 Window系统下,文件夹路径中输入 %APPDATA%,若没有pip目录创建,并在里面创建文件 pip.ini,内容如下
[global]
timeout = 6000
index-url = https://pypi.mirrors.ustc.edu.cn/simple/
trusted-host = pypi.mirrors.ustc.edu.cn
三、生产EXE执行文件
【可执行文件生成命令】pyinstaller -F .EasyLoglizer.py -w
获取帮助信息:pyinstaller -h
What to generate:
-D, –onedir Create a one-folder bundle containing an executable
(default)
-F, –onefile Create a one-file bundled executable.
–specpath DIR Folder to store the generated spec file (default:
current directory)
-n NAME, –name NAME Name to assign to the bundled app and spec file
(default: first script’s basename)
-w, –windowed, –noconsole
Windows and Mac OS X: do not provide a console window
for standard i/o. On Mac OS X this also triggers
building an OS X .app bundle. On Windows this option
will be set if the first script is a ‘.pyw’ file. This
option is ignored in *NIX systems.
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/175439.html原文链接:https://javaforall.cn