Browse Source
This should be helpful for modules that want to use `steam` package, but do no use SteamClient and its features. Close #190pull/254/head
4 changed files with 28 additions and 6 deletions
@ -29,18 +29,28 @@ Install |
|||||
|
|
||||
For system specific details, see `Installation Details <http://steam.readthedocs.io/en/latest/install.html>`_. |
For system specific details, see `Installation Details <http://steam.readthedocs.io/en/latest/install.html>`_. |
||||
|
|
||||
Install latest version from PYPI |
Install latest release version from PYPI: |
||||
|
|
||||
.. code:: bash |
.. code:: bash |
||||
|
|
||||
|
# with SteamClient dependecies |
||||
|
pip install -U steam[client] |
||||
|
|
||||
|
# without (only when using parts that do no rely on gevent, and protobufs) |
||||
pip install -U steam |
pip install -U steam |
||||
|
|
||||
Install the current dev version from ``github`` |
Installing directly from ``github`` repository: |
||||
|
|
||||
.. code:: bash |
.. code:: bash |
||||
|
|
||||
|
# cutting edge from master |
||||
pip install git+https://github.com/ValvePython/steam#egg=steam |
pip install git+https://github.com/ValvePython/steam#egg=steam |
||||
|
|
||||
|
# specific version tag (e.g. v1.0.0) |
||||
|
pip install git+https://github.com/ValvePython/[email protected]#egg=steam[client] |
||||
|
# without SteamClient extras |
||||
|
pip install git+https://github.com/ValvePython/[email protected]#egg=steam |
||||
|
|
||||
Vagrant |
Vagrant |
||||
------- |
------- |
||||
|
|
||||
|
@ -35,8 +35,18 @@ For system specific details, see :doc:`install`. |
|||||
|
|
||||
Install latest version from PYPI:: |
Install latest version from PYPI:: |
||||
|
|
||||
|
# with SteamClient dependecies |
||||
|
pip install -U steam[client] |
||||
|
|
||||
|
# without (only when using parts that do no rely on gevent, and protobufs) |
||||
pip install -U steam |
pip install -U steam |
||||
|
|
||||
Install the current dev version from ``github``:: |
Install the current dev version from ``github``:: |
||||
|
|
||||
|
# cutting edge from master |
||||
pip install git+https://github.com/ValvePython/steam#egg=steam |
pip install git+https://github.com/ValvePython/steam#egg=steam |
||||
|
|
||||
|
# specific version tag (e.g. v1.0.0) |
||||
|
pip install git+https://github.com/ValvePython/[email protected]#egg=steam[client] |
||||
|
# without SteamClient extras |
||||
|
pip install git+https://github.com/ValvePython/[email protected]#egg=steam |
||||
|
Loading…
Reference in new issue