anaconda离线安装包的方法

当设备没有网络时,可以使用有网络的设备先下载所需安装包,然后离线拷贝到需要安装的设备,最后安装。

一. 下载所需安装包

下载命令:使用pip download。详细描述参见pip download -h
以"blind-watermark"为例。
在这里插入图片描述

pip download blind-watermark -d D:\offline-packages\blind-watermark-wheels

Download Options:
-d, --dest < dir > Download packages into < dir >. 不必创建dir,会自动创建

二. 打包并拷贝

将下载的所有离线包打包成一个压缩文件,例如zip或tar.gz格式。
blind-watermark.zip
之后,拷贝到需要安装的设备。无需解压。

三. 安装

安装包存放路径D:\offline-packages\blind-watermark-wheels

  1. 启动待配置的conda环境。此处以base环境为例:

    conda activate base
    
  2. 安装

    pip install  --no-index --find-links=D:\offline-packages\blind-watermark-wheels blind-watermark
    

    其中,–no-index 是 Ignore package index (only looking at --find-links URLs instead).,最后的blind-watermark是安装的package名称。
    安装完成后,提示

    Successfully installed blind-watermark-0.4.4 opencv-python-4.9.0.80

四. 检查

检查安装是否成功,并核对版本号。

conda list -n base ^blind

Target Environment Specification:

-n ENVIRONMENT, --name ENVIRONMENT
Name of environment.

^blind 意为 List all packages that begin with the letters "blind "

你可能感兴趣的:(python技巧,python,conda)