Adding polars to Python3
Just a quick note to correct the Polars instruction, you should install using pip3 with the following command:
pip3 install polars |
You’ll get something like the following:
Defaulting to user installation because normal site-packages is not writeable
Collecting polars
Downloading polars-1.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.6 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 31.6/31.6 MB 11.5 MB/s eta 0:00:00
Installing collected packages: polars
Successfully installed polars-1.21.0 |
While I always add a python link to alias python3, that’s not possible with the pip3 utility because there is also a pip utility in the /usr/bin directory.
As always, I hope this helps somebody with the task at hand.