Python 3.7以降で高速に動作するWebサーバー及びWebフレームワーク「Sanic」のインストールについて解説しています。
「Sanic(https://github.com/sanic-org/sanic/)」は、Webサーバー及びWebフレームワークであり、Python 3.5で追加された非同期処理(並行処理) を実現できる構文Async/awaitを使用できます。
■Python
今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)
■Sanicをインストールする
Sanicをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install sanic
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、pipを使う場合にはコマンドでの切り替えを行います。
py -3.8 -m pip install sanic
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting sanic Downloading sanic-21.12.1-py3-none-any.whl (139 kB) |████████████████████████████████| 139 kB 819 kB/s Requirement already satisfied: httptools>=0.0.10 in c:\users\user_\appdata\roaming\python\python38\site-packages (from sanic) (0.2.0) Collecting websockets>=10.0 Downloading websockets-10.1-cp38-cp38-win_amd64.whl (97 kB) |████████████████████████████████| 97 kB 1.1 MB/s Requirement already satisfied: multidict<6.0,>=5.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from sanic) (5.1.0) Collecting sanic-routing~=0.7 Downloading sanic_routing-0.7.2-py3-none-any.whl (23 kB) Collecting aiofiles>=0.6.0 Downloading aiofiles-0.8.0-py3-none-any.whl (13 kB) Installing collected packages: websockets, sanic-routing, aiofiles, sanic Attempting uninstall: websockets Found existing installation: websockets 9.1 Uninstalling websockets-9.1: Successfully uninstalled websockets-9.1 Successfully installed aiofiles-0.8.0 sanic-21.12.1 sanic-routing-0.7.2 websockets-10.1
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、Sanicが正常にインストールされたことになります。
なお、今回はSanicのバージョン21.12.1をインストールしました。
コメント