Skip to content

Commit

Permalink
DOC explain how to install pre-releases versions
Browse files Browse the repository at this point in the history
  • Loading branch information
leszekhanusz committed Oct 23, 2023
1 parent e0bd497 commit f273a2b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ Installation

You can install GQL 3 and all the extra dependencies using pip_::

pip install gql[all]
pip install "gql[all]"

To have the latest pre-releases versions of gql, you can use::

pip install --pre "gql[all]"

After installation, you can start using GQL by importing from the top-level
:mod:`gql` package.
Expand Down Expand Up @@ -70,6 +74,11 @@ To install gql with less dependencies, you might want to instead install a combi
following packages: :code:`gql-with-aiohttp`, :code:`gql-with-websockets`, :code:`gql-with-requests`,
:code:`gql-with-botocore`

If you want to have the latest pre-releases version of gql and graphql-core, you can install
them with conda using::

conda install -c conda-forge -c conda-forge/label/graphql_core_alpha -c conda-forge/label/gql_beta gql-with-all

Reporting Issues and Contributing
---------------------------------

Expand Down

0 comments on commit f273a2b

Please sign in to comment.