diff --git a/README.md b/README.md index 017534f5..036cfcf5 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,11 @@ Graphene also supports *SQLAlchemy*! For instaling graphene, just run this command in your shell ```bash -pip install graphene>=1.0.dev +pip install "graphene>=1.0.dev" # In case of need Django model support -pip install graphene-django>=1.0.dev +pip install "graphene-django>=1.0.dev" # Or in case of need SQLAlchemy support -pip install graphene-sqlalchemy>=1.0.dev +pip install "graphene-sqlalchemy>=1.0.dev" ``` ## 1.0 Upgrade Guide diff --git a/README.rst b/README.rst index f85449e7..941b7be6 100644 --- a/README.rst +++ b/README.rst @@ -34,11 +34,11 @@ For instaling graphene, just run this command in your shell .. code:: bash - pip install graphene>=1.0.dev + pip install "graphene>=1.0.dev" # In case of need Django model support - pip install graphene-django>=1.0.dev + pip install "graphene-django>=1.0.dev" # Or in case of need SQLAlchemy support - pip install graphene-sqlalchemy>=1.0.dev + pip install "graphene-sqlalchemy>=1.0.dev" 1.0 Upgrade Guide -----------------