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)

  • 相关阅读:
    echarts x轴文字显示不全(解决方案)
    公共文件模块include
    个人tools封装
    echart改变legend样式及分页
    【学习笔记】tensorflow图片读取
    【学习笔记】tensorflow文件读取
    《简约之美:软件设计之道》总结
    【学习笔记】tensorflow队列和线程
    【学习笔记】tensorflow实现一个简单的线性回归
    【学习笔记】tensorflow基础
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13349392.html
Copyright © 2011-2022 走看看