当前位置:首页 > Python

[转载] Python 的打包神器 — Nuitka!

夏立军2年前 (2022-08-02)540
[转载] Python 的打包神器 — Nuitka!
转载来源: https://mp.weixin.qq.com/s/sNaC1bHPYXkS5hIdbvTeCQ 一. pyinstaller和Nuitka使用感受 1.1 使用需求 ˃ 这次也是由于项目需要,要将python的代码转成exe的程序,在找了许久后,发现了2个都能对python项目打包的...

[Python] pipenv 虚拟环境搭建

夏立军4年前 (2021-05-12)691
[Python] pipenv 虚拟环境搭建
什么是 pipenv ˃ pipenv是requests作者的一个项目,整合了virtualenv、pip、pipfile, 用于更方便地为项目建立虚拟环境并管理虚拟环境中的第三方模块。 安装 pipenv ˃ 三选一 pip install pipenv python3 -m pip insta...

使用pip安装模块时提示: No module named pip

夏立军4年前 (2020-12-09)729
使用pip安装模块时提示: No module named pip
今天使用pip安装模块提示错误信息:No module named pip windows 解决方法:```˃˃˃ python -m ensurepip Ignoring indexes: https://pypi.python.org/simpleRequirement already sa...

python Qt5 qt-creator 界面开发入门

夏立军4年前 (2020-10-24)664
python Qt5 qt-creator 界面开发入门
本次学习Qt5的界面开发˃ ### 环境 win10 64位python 3.8.5安装见 Python 桌面级应用界面 [Qt5] ˃ ### 进入正题安装 qt-creator 软件,可按照自己的想法安装完成 点击下载 ˂a name="打开后 以此点" class="referen...

Python 桌面级应用界面 [Qt5]

夏立军4年前 (2020-10-22)647
Python 桌面级应用界面 [Qt5]
Pyhton 桌面级应用界面˃ ### 环境 win10python 3.8.5vs code点击进入下载 python 使用前操作配置切换软件源 ˃ ### 临时使用的方式 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple...

Python 多线程 线程池

夏立军4年前 (2020-10-22)561
Python 多线程 线程池
˃ # 线程池 实例 import threading a = 0 def test(): global a while a # 运行结果 ![](http://typecho.128x.cn//2020/10/202010229851_618.png)<!--au...

python 快速读取 excel 表格中的数据

夏立军4年前 (2020-09-11)685
python 快速读取 excel 表格中的数据
˃ # https://www.cnblogs.com/insane-Mr-Li/p/9092619.html ```python pip install xlrdpip install xlwtimport xlrdimport xlwt def read_excel(): # 打开文件...