recherche

Maison  >  Questions et réponses  >  le corps du texte

linux - python -m参数

平时自己安装都是直接pip install安装
但今天看到一个python -m pip install pymongo,请问这个-m有什么作用吗?

迷茫迷茫2786 Il y a quelques jours766

répondre à tous(2)je répondrai

  • 黄舟

    黄舟2017-04-18 10:27:26

    python -h
    
    -m mod : run library module as a script (terminates option list)
    

    -m exécute le module spécifié

    Couramment utilisé :

    Activer le serveur statique python -m SimpleHTTPServer 8888

    Voir la documentation python python -m pydoc -p 8888

    serveur pydoc prêt sur http://localhost:8888/

    Formater json

    echo '{"name":"python","version":"2.7"}' | python -m json.tool
    {
        "name": "python",
        "version": "2.7"
    }

    plus

    répondre
    0
  • PHP中文网

    PHP中文网2017-04-18 10:27:26

    Vous pouvez vous référer à : http://www.cnblogs.com/xuewei...

    répondre
    0
  • Annulerrépondre