CSVファイルの解析とレンダリングができる「ShanCsv」のインストールについて解説しています。
「ShanCsv(https://github.com/Ninjago77/ShanCsv)」は、CSVファイルの解析とレンダリングができるPythonのライブラリです。
■Python
今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)
■ShanCsvをインストールする
ShanCsvをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install ShanCsv
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、バージョンの切り替えを行います。
py -3.8 -m pip install ShanCsv
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting ShanCsv Downloading ShanCsv-0.1.tar.gz (6.4 kB) Preparing metadata (setup.py) ... done Building wheels for collected packages: ShanCsv Building wheel for ShanCsv (setup.py) ... done Created wheel for ShanCsv: filename=ShanCsv-0.1-py3-none-any.whl size=2893 sha256=2433314158d21a43335caaee2886876a95f0dba060d61a471ba2267900c3f3c1 Stored in directory: c:\users\user_\appdata\local\pip\cache\wheels\bee\d6e0559f826464de7943f85e94cc9611591072f320ad7afee4b Successfully built ShanCsv Installing collected packages: ShanCsv Successfully installed ShanCsv-0.1
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されると、ShanCsvのインストールが正常に完了となります。
なお、今回はShanCsvのバージョン0.1をインストールしました。
コメント