Parquetファイル形式をPythonで実装できる「parquet」のインストールについて解説しています。
「parquet(https://github.com/jcrobak/parquet-python)」は、Parquetファイル形式の純粋なPython実装です。現在は読み取りのみ対応している。
■Python
今回のPythonのバージョンは、「3.7.9」を使用しています。(Windows10)(pythonランチャーでの確認)
■parquetをインストールする
parquetをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install parquet
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.7.9にインストールを行うために、バージョンの切り替えを行います。
py -3.7 -m pip install parquet
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting parquet Downloading parquet-1.3.1-py3-none-any.whl (24 kB) Collecting thriftpy2 Downloading thriftpy2-0.4.14.tar.gz (361 kB) |████████████████████████████████| 361 kB 1.1 MB/s Preparing metadata (setup.py) ... done Collecting ply<4.0,>=3.4 Downloading ply-3.11-py2.py3-none-any.whl (49 kB) |████████████████████████████████| 49 kB 1.5 MB/s Building wheels for collected packages: thriftpy2 Building wheel for thriftpy2 (setup.py) ... done Created wheel for thriftpy2: filename=thriftpy2-0.4.14-py2.py3-none-any.whl size=321001 sha256=53131da17e06f55be051a87e3b4ecd8d0636198e19c09c8954442e4520daec2e Stored in directory: c:\users\user_\appdata\local\pip\cache\wheelsa\f5c0d851aa64b58db72883cf9393cc824d536bdf13f5c83cff4 Successfully built thriftpy2 Installing collected packages: ply, thriftpy2, parquet WARNING: The script parquet.exe is installed in 'C:\Users\user_\AppData\Roaming\Python\Python37\Scripts' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed parquet-1.3.1 ply-3.11 thriftpy2-0.4.14 WARNING: You are using pip version 21.3.1; however, version 22.2.2 is available. You should consider upgrading via the 'C:\Program Files (x86)\Python37-32\python.exe -m pip install --upgrade pip' command.
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、parquetが正常にインストールされたことになります。「WARNING:(警告)」が出力されていますが、あくまで”警告”であり、エラーではないので、一旦無視します。
今回はparquetのバージョン1.3.1がインストールされました。
コメント