nuitka 打包pandas
2022/2/21 23:46:12
本文主要是介绍nuitka 打包pandas,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
随便新建一个python 例子
# This is a sample Python script. # Press Shift+F10 to execute it or replace it with your code. # Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings. import pandas as pd mydataset = { 'sites': ["Google", "Runoob", "Wiki"], 'number': [1, 2, 3] } def print_hi(name): myvar = pd.DataFrame(mydataset) # Use a breakpoint in the code line below to debug your script. print(myvar) # Press Ctrl+F8 to toggle the breakpoint. # Press the green button in the gutter to run the script. if __name__ == '__main__': print_hi('PyCharm') # See PyCharm help at https://www.jetbrains.com/help/pycharm/
先保证conda 和nuitka 环境纯净。
注意conda 安装完成后,需要升级一下 pandas 和numpy(本地运行可以不升级,打包遇到错误后升级即可解决)
pip install --upgrade numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install --upgrade numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
nuitka --mingw64 --standalone --show-progress --nofollow-imports --output-dir=out --plugin-enable=numpy test1.py
打包后需要拷贝相关依赖文件
拷贝脚本
set c="C:\Program Files\Git\usr\bin\cp.exe" set dst=D:\work\tools\testPack\out\test1.dist set srcdir=D:\ProgramData\Anaconda3\Lib\site-packages %c% %srcdir%\pandas %dst% -rf %c% %srcdir%\numpy %dst% -rf %c% %srcdir%\pytz %dst% -rf %c% %srcdir%\dateutil %dst% -rf %c% %srcdir%\pandas %dst% -rf %c% %srcdir%\mkl %dst% -rf %c% %srcdir%\six.py %dst% -rf
这篇关于nuitka 打包pandas的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Java中定时任务实现方式及源码剖析
- 2024-11-24Java中定时任务实现方式及源码剖析
- 2024-11-24鸿蒙原生开发手记:03-元服务开发全流程(开发元服务,只需要看这一篇文章)
- 2024-11-24细说敏捷:敏捷四会之每日站会
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解