Pythonを用いて分析を行うために便利なスプレッドシート「Mito」のインストールについて解説します。
Mito(https://docs.trymito.io/)は、Python分析を10倍速く完了するのに役立つスプレッドシートです。使用するためにはライブラリを用います。
■Python
今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)
■mitoinstallerをインストールする
mitoinstallerをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install mitoinstaller
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、pipを使う場合にはコマンドでの切り替えを行います。
py -3.8 -m pip install mitoinstaller
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting mitoinstaller Downloading mitoinstaller-0.0.104.tar.gz (15 kB) Preparing metadata (setup.py) ... done Collecting analytics-python Downloading analytics_python-1.4.0-py2.py3-none-any.whl (15 kB) Requirement already satisfied: colorama in c:\users\user_\appdata\roaming\python\python38\site-packages (from mitoinstaller) (0.4.4) Requirement already satisfied: termcolor in c:\users\user_\appdata\roaming\python\python38\site-packages (from mitoinstaller) (1.1.0) Requirement already satisfied: python-dateutil>2.1 in c:\users\user_\appdata\roaming\python\python38\site-packages (from analytics-python->mitoinstaller) (2.8.1) Requirement already satisfied: requests<3.0,>=2.7 in c:\users\user_\appdata\roaming\python\python38\site-packages (from analytics-python->mitoinstaller) (2.25.1) Collecting backoff==1.10.0 Downloading backoff-1.10.0-py2.py3-none-any.whl (31 kB) Requirement already satisfied: six>=1.5 in c:\users\user_\appdata\roaming\python\python38\site-packages (from analytics-python->mitoinstaller) (1.15.0) Collecting monotonic>=1.5 Downloading monotonic-1.6-py2.py3-none-any.whl (8.2 kB) Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests<3.0,>=2.7->analytics-python->mitoinstaller) (1.26.5) Requirement already satisfied: certifi>=2017.4.17 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests<3.0,>=2.7->analytics-python->mitoinstaller) (2021.5.30) Requirement already satisfied: idna<3,>=2.5 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests<3.0,>=2.7->analytics-python->mitoinstaller) (2.10) Requirement already satisfied: chardet<5,>=3.0.2 in c:\users\user_\appdata\roaming\python\python38\site-packages (from requests<3.0,>=2.7->analytics-python->mitoinstaller) (4.0.0) Building wheels for collected packages: mitoinstaller Building wheel for mitoinstaller (setup.py) ... done Created wheel for mitoinstaller: filename=mitoinstaller-0.0.104-py3-none-any.whl size=22727 sha256=adbb47a85c5eab999aa45c1be85207445255475680e402778b99c81b6871d546 Stored in directory: c:\users\user_\appdata\local\pip\cache\wheelsf\d3\e5c9e898b26785be6e6fb250028dd586506ae97245ba8ab65a Successfully built mitoinstaller Installing collected packages: monotonic, backoff, analytics-python, mitoinstaller Successfully installed analytics-python-1.4.0 backoff-1.10.0 mitoinstaller-0.0.104 monotonic-1.6
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、mitoinstallerが正常にインストールされたことになります。
なお、今回はmitoinstallerのバージョン0.0.104をインストールしました。
コメント