zoukankan      html  css  js  c++  java
  • python 安装celery

    1. pip install celery
    
    node2:/usr/local/python27/bin#pip install celery
    Requirement already satisfied: celery in /usr/local/python27/lib/python2.7/site-packages
    Requirement already satisfied: kombu<3.1,>=3.0.37 in /usr/local/python27/lib/python2.7/site-packages (from celery)
    Requirement already satisfied: pytz>dev in /usr/local/python27/lib/python2.7/site-packages (from celery)
    Requirement already satisfied: billiard<3.4,>=3.3.0.23 in /usr/local/python27/lib/python2.7/site-packages (from celery)
    Requirement already satisfied: amqp<2.0,>=1.4.9 in /usr/local/python27/lib/python2.7/site-packages (from kombu<3.1,>=3.0.37->celery)
    Requirement already satisfied: anyjson>=0.3.3 in /usr/local/python27/lib/python2.7/site-packages (from kombu<3.1,>=3.0.37->celery)
    
    2.
    
    node2:/usr/local/python27/bin#pip install celery-with-redis
    
    Requirement already satisfied: celery-with-redis in /usr/local/python27/lib/python2.7/site-packages
    Requirement already satisfied: celery<4.0,>=3.0 in /usr/local/python27/lib/python2.7/site-packages (from celery-with-redis)
    Requirement already satisfied: redis>=2.4.4 in /usr/local/python27/lib/python2.7/site-packages (from celery-with-redis)
    Requirement already satisfied: kombu<3.1,>=3.0.37 in /usr/local/python27/lib/python2.7/site-packages (from celery<4.0,>=3.0->celery-with-redis)
    Requirement already satisfied: pytz>dev in /usr/local/python27/lib/python2.7/site-packages (from celery<4.0,>=3.0->celery-with-redis)
    Requirement already satisfied: billiard<3.4,>=3.3.0.23 in /usr/local/python27/lib/python2.7/site-packages (from celery<4.0,>=3.0->celery-with-redis)
    Requirement already satisfied: amqp<2.0,>=1.4.9 in /usr/local/python27/lib/python2.7/site-packages (from kombu<3.1,>=3.0.37->celery<4.0,>=3.0->celery-with-redis)
    Requirement already satisfied: anyjson>=0.3.3 in /usr/local/python27/lib/python2.7/site-packages (from kombu<3.1,>=3.0.37->celery<4.0,>=3.0->celery-with-redis)
    node2:/usr/local/python27/bin#
    
    
    3.node2:/usr/local/python27/bin#pip install django-celery
    Requirement already satisfied: django-celery in /usr/local/python27/lib/python2.7/site-packages
    Requirement already satisfied: celery<4.0,>=3.1.15 in /usr/local/python27/lib/python2.7/site-packages (from django-celery)
    Requirement already satisfied: django>=1.8 in /usr/local/python27/lib/python2.7/site-packages (from django-celery)
    Requirement already satisfied: kombu<3.1,>=3.0.37 in /usr/local/python27/lib/python2.7/site-packages (from celery<4.0,>=3.1.15->django-celery)
    Requirement already satisfied: pytz>dev in /usr/local/python27/lib/python2.7/site-packages (from celery<4.0,>=3.1.15->django-celery)
    Requirement already satisfied: billiard<3.4,>=3.3.0.23 in /usr/local/python27/lib/python2.7/site-packages (from celery<4.0,>=3.1.15->django-celery)
    Requirement already satisfied: amqp<2.0,>=1.4.9 in /usr/local/python27/lib/python2.7/site-packages (from kombu<3.1,>=3.0.37->celery<4.0,>=3.1.15->django-celery)
    Requirement already satisfied: anyjson>=0.3.3 in /usr/local/python27/lib/python2.7/site-packages (from kombu<3.1,>=3.0.37->celery<4.0,>=3.1.15->django-celery)

  • 相关阅读:
    linux下 C++ 读取mat文件 MATLAB extern cyphon scipy 未完待续
    mshadow笔记
    mem_fun 例子
    gedit embeded terminal 设置字体 颜色
    decltype typename
    gcc4.9.1新特性
    C++开发者都应该使用的10个C++11特性 转
    如何加快C++代码的编译速度 转 ccache
    cout关闭输出缓冲,调试用
    boost range zhuan
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13349392.html
Copyright © 2011-2022 走看看