随笔分类 - python
摘要:from multiprocessing import Process, Queue class Engine: def __init__(self): self.info = "Engine Info" self.order_queue = Queue() # 创建一个用于接收订单的队列 self
阅读全文
摘要:talib/_ta_lib.c:526:28: fatal error: ta-lib/ta_defs.h: 没有那个文件或目录 matplotlib2.2.2 numpy1.14.2 pandas0.20.3 TA-Lib0.4.16 tables3.4.2 jupyter1.0.0 安装TA-l
阅读全文
摘要:python -m pip install nuitka python -m nuitka --module some_module.py 更多 https://nuitka.net/doc/user-manual.html
阅读全文
摘要:安装必要的Python包 pip install setuptools pip install wheel 打包 pip wheel .
阅读全文
摘要:python -m nuitka --standalone --show-memory --show-progress --nofollow-imports --follow-import-to=src --enable-plugin=pyqt5 --windows-disable-console
阅读全文