Requirement already satisfied解决办法

Posted 普通网友

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Requirement already satisfied解决办法相关的知识,希望对你有一定的参考价值。

遇到的问题: 当使用电脑中安装的Python 3.7的IDLE去运行某一个python文件时,会出现ModuleNotFoundError: No module named 'numpy'的报错,需要安装numpy库。


而当使用win+R快捷键打开cmd,输入pip install numpy命令时,却得到Requirement already satisfied: numpy in d:programminganaconda3libsite-packages (1.16.5)的提示,告诉我们已经有numpy存在于d:programminganaconda3libsite-packages (1.16.5)路径中,但是我们在IDLE中运行python文件时还是缺少numpy库。


分析原因,是因为已经存在的numpy库是存在于d:programminganaconda3libsite-packages (1.16.5)路径中,而我们的IDLE安装在d:programmingPython37文件夹下,目前d:programmingPython37Libsite-packages路径中是不存在numpy库的,所以运行python文件会报错。所以我们需要将numpy库安装在IDLE对应的路径下,才可以正常运行该python文件。

解决办法: 在cmd中使用pip install --target=目标路径 工具包名字格式的命令去安装所需要的库。例如,我使用pip install --target=d:/programming/Python37/Lib/site-packages numpy这个命令去安装numpy库,就可以成功安装。


重新在IDLE中运行之前的python文件,就可以正常运行了。

使用 satis 搭建 composer 本地仓库

环境

  • windows
  • nginx
  • php
  • composer

安装

拉取 satis 项目包,并拉取项目依赖

composer create-project composer/satis --stability=dev

cd satis

composer install

配置

修改 satis/config.json 文件,文件内容如下


{
    "name": "composer 本地仓库",
    "homepage": "http://packages.example.org", // 访问域名
    "repositories": [// 要拉取包的仓库地址
        { "type": "vcs", "url": "https://github.com/test-lin/db.git" },
        { "type": "vcs", "url": "https://github.com/test-lin/queue.git" },
        { "type": "vcs", "url": "https://github.com/test-lin/cache.git" },
        { "type": "vcs", "url": "http://192.168.6.251:3000/php/xjwSpider.git" }
    ],
    "require": { // 要拉取到本地的包文件 注:不会包含包的依赖
        "test-lin/db": "*",
        "test-lin/queue": "*",
        "test-lin/cache": "*",
        "php/xjwSpider": "*"
    },
    "archive": {
        "directory": "dist",
        "format": "tar",
        "prefix-url": "http://packages.example.org" // * 这个参数是当前项目的域名,作用是以zip压缩包的方式直接下载包文件
    }
}

拉取包到本地仓库

web/ 是本地仓库访问地址。

php bin/satis build config.json web/

如果需要定时更新,则需要配置定时任务去定时更新

设置本地仓库

nginx 设置虚拟主机



server {
    listen 80;
    server_name packages.example.org;
    root /var/www/satis/web;
    index index.php index.html;

    location ~* \.php$ {
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
    }
}

使用本地仓库中的包

composer.json 文件中添加以下 json 拉取,即可获取本地库了.

如果本地仓库不存在且有网络会去网络中获取。repositories 参数可以设置多个



{
  "repositories": [{
    "type": "composer",
    "url": "http://packages.example.org"
  }]
}

FQA

1. github 的包需要配置 token


Could not fetch https://api.github.com/repos/test-lin/db/git/refs/heads?per_page=100, please create a GitHub OAuth token to go over the API rate limit
Head to https://github.com/settings/tokens/new?scopes=repo&description=Composer+on+packages.example.org+2018-06-28+0310
to retrieve a token. It will be stored in "/home/vagrant/.config/composer/auth.json" for future use by Composer.

解决方法:

访问命令行中提示的 https://github.com/settings/t...

复制 token description 文本框中内容

拉到页底 点击 generate token

在命令行中粘贴复制内容确认限可

2. 私有包,拉取不了

解决方法:

本地生成 ssh key ,配置到要拉取项目的平台即可,免密拉取了



ssh-keygen -t rsa

cat ~/.ssh/id_rsa.pub

以 gogs 为例

技术分享图片

3. composer 不支持 http


Your configuration does not allow connections to http://192.168.6.251:3000/php/xjwSpider.git. See https://getcomposer.org/doc/06-config.md#secure-http for details.

解决方法:

composer config -g secure-http false

4. 拉取的包 composer.json 配置有误


[Composer\Repository\InvalidRepositoryException]
No valid composer.json was found in any branch or tag of http://192.168.6.251:3000/php/xjwSpider.git, could not load a package from it.

解决方法:

  1. 确保项目根部有 composer.json
  2. composer.json 里需要设置 name

原文地址:https://segmentfault.com/a/1190000016523278

以上是关于Requirement already satisfied解决办法的主要内容,如果未能解决你的问题,请参考以下文章

Requirement already satisfied解决办法

安装robotframwork 报错Requirement already satisfied

Requirement already satisfied: objection in c:userslibaiappdatalocalprogramspythonpython39li

pip install安装软件包报错:Requirement already satisfied

python3.6.1环境配置出现Requirement already up-to-date: pip in c:python36libsite-packages决解方案

使用 satis 搭建 composer 本地仓库