1、安装所需要的库
要把jupyter文件变成exe主要用到两库pyinstaller 和pywin32,打开anaconda prompt 安装就行pip install pyinstaller
2、 将把.ipynb download as .py
3、将下载的py文件复制到pyinstaller的文件夹下
我的电脑PyInstaller文件夹在,D:\anaconda\Lib\site-packages\PyInstaller
4、生成exe文件
打开anaconda promote 窗口,进入D:\anaconda\Lib\site-packages\PyInstaller目录下
(base) C:\Users\DL>d:
(base) D:\>cd D:\anaconda\Lib\site-packages\PyInstaller
输入命令:pyinstaller -F name.py ,之后就开始生成了,也可加入图标,(pyinstaller -F -w -i test.ico test.py)图标一定要是ico格式,也要和py文件放进同pyinstaller文件夹里。
生成成功后就在pyinstaller文件夹里面会有一个dict(list),生成后的文件就在里面