现在上传图片已经不再需要导入模块我的理解是这样的 比如说你要导入一个名字为a.jbg的图片就可以直接
代码语言:javascript复制![a.jpg](a.jpg)to instert a.jpg.
to instert b.jpg. 可以看到插件实在 hexo的根目录node_moduleshexo-asset-image
to instert a.jpg.
下面是打包文件
第一种方法是可以直接进行打包然后把程序所需要的直接放到一个文件夹里边就可以运行了
代码语言:javascript复制pyinstaller -F '需要打包文件的绝对路径'
Python打包exe,以及解决闪退_Hi-King的博客-CSDN博客_python生成exe文件闪退
第二种方法是 def get_resource_path(relative_path): if getattr(sys,”frozen”,False): base_path=sys._MEIPASS#获取临时资源 else: base_path=os.path.abspath(“.”)#获取当前路径 return os.path.join(base_path,relative_path) img1_path=get_resource_path(os.path.join(“resources”,”1.png”)) img2_path = get_resource_path(os.path.join(“resources”, “2.png”)) mp3_path = get_resource_path(os.path.join(“resources”, “background.mp3”)) 这就是程序打包时要是需要其他文件时要进行的操作 当然要提前趣导入 import sys
打包第一步 pyi-makespec -F .py文件
更改.spec文件中的datas中的内容一般建议是设置成一样的不进行更改
第二部直接打包身份成的.spec文件 pyinstaller -F .spec文件