タグ

PyPIに関するU1and0のブックマーク (2)

  • PEP8項目まとめ その1(Code lay-out) - プー底

    PythonのコーディングスタイルガイドPEP8について、PyPIで配布されてるpep8でチェックできる項目との対応をまとめる (pep8モジュールですべての項目をチェックできる訳ではないようなので) Code lay-out Indentation PEP8 Item pep8 ErrorCode Use 4 spaces per indentation level. E111 Continuation lines should align wrapped elements either vertically using Python's implicit line joining inside parentheses, brackets and braces, or using a hanging indent. When using a hanging indent the foll

    PEP8項目まとめ その1(Code lay-out) - プー底
  • 【Python】pipの使い方 - TASK NOTES

    Pythonのパッケージ管理システムであるpipの使い方をまとめました。まだ使用したことのない機能もあるので、今後使用するタイミングがあれば随時追加していきます。 pipとは Pythonのパッケージ管理システムでRubyでいうGemのようなものです。パッケージは  PyPI - the Python Package Index からインストールされます。Pythonはその他にもパッケージ管理システムがありますが今は pip 一択です。 Python パッケージ管理技術まとめ (pip, setuptools, easy_install, etc) がよくまとまってます。 pipのドキュメント  pip — pip 7.1.0 documentation pipのアップデート pipはPython 2.7.9 以降、Python 3.4以降からデフォルトでインストールされています。あまり古

    【Python】pipの使い方 - TASK NOTES
    U1and0
    U1and0 2016/08/06
    more_itertoolsのwindows版がconda cloudに落ちていなかったので、pipでインストール。使い方確認
  • 1