首先在有网的机器上使用conda create --name xx python=x.x.x 命令创建一个和目标机器(无网)一样的环境
使用 下面命令
pip download opencv-python -d C:\Users\xuhaitao\Desktop\installer
pip download pyinstaller -d C:\Users\xuhaitao\Desktop\installer
在目标无网络的机器上使用下面命令安装
pip install --no-index --find-links=download_directory pyinstaller
FR:徐海涛(hunkxu)