Python用のGraphQL Frameworkである「graphene」のインストールについて解説しています。
graphene(https://github.com/graphql-python/graphene)は、GraphQL schemas/typesを迅速かつ簡単に構築できるライブラリです。
■Python
今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)
■grapheneをインストールする
grapheneをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install graphene
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、pipを使う場合にはコマンドでの切り替えを行います。
py -3.8 -m pip install graphene
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting graphene Downloading graphene-3.0-py2.py3-none-any.whl (112 kB) |████████████████████████████████| 112 kB 1.1 MB/s Collecting graphql-core~=3.1.2 Downloading graphql_core-3.1.7-py3-none-any.whl (189 kB) |████████████████████████████████| 189 kB 930 kB/s Collecting graphql-relay<4,>=3.0 Downloading graphql_relay-3.1.0-py3-none-any.whl (16 kB) Collecting aniso8601<10,>=8 Downloading aniso8601-9.0.1-py2.py3-none-any.whl (52 kB) |████████████████████████████████| 52 kB 582 kB/s Installing collected packages: graphql-core, graphql-relay, aniso8601, graphene Successfully installed aniso8601-9.0.1 graphene-3.0 graphql-core-3.1.7 graphql-relay-3.1.0
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、grapheneが正常にインストールされたことになります。
なお、今回はgrapheneのバージョン3.0をインストールしました。
コメント