zoukankan      html  css  js  c++  java
  • 离线下载pip包安装

    Host-A 不能上网,但是需要在上面安装python-package

    通过另外一台能上网的Host-B主机

    1. 下载需要离线安装的Packages

    在Host-B上执行如下命令:

    安装单个Package

    $ pip install <package> --download /tmp/offline_packages
    
    

    安装多个Packages

    $ pip install --download /tmp/offline_packages -r requirements.txt
    
    

     2. 将下载好的Packages拷贝至内网服务器

    使用scp、sftp等方式将下载好的Packages拷贝至需要离线安装这些包的内网服务器。

    3. 安装Packages

    假设内网服务器的目录 /tmp/transferred_packages 包含你上一步远程拷贝过来packages,在内网服务器上执行如下命令

    安装单个Package的情况

    $ pip install --no-index --find-links="/tmp/tranferred_packages" <package>
    
    

    安装多个Packages

    $ pip install --no-index --find-links="/tmp/tranferred_packages" -r requirements.txt
  • 相关阅读:
    leetcode之String to Integer (atoi)
    初次思考
    leetcode之Reverse Words in a String
    Leetcode之Database篇
    在项目中添加类
    创建项目
    配置Eclipse

    递归
    多态
  • 原文地址:https://www.cnblogs.com/liqing1009/p/8428305.html
Copyright © 2011-2022 走看看