parquet-cli icon indicating copy to clipboard operation
parquet-cli copied to clipboard

"Command 'parq' not found" after successful "pip install parquet-cli"

Open davidglavas opened this issue 7 years ago • 3 comments

Content of my command line while trying to get parquet-cli to run on Ubuntu 18.04.1 LTS:

machine:~$ pip install parquet-cli
Collecting parquet-cli

... [installing stuff]

Installing collected packages: pytz, six, python-dateutil, numpy, pandas, futures, pyarrow, parquet-cli
Successfully installed futures-3.2.0 numpy-1.15.4 pandas-0.22.0 parquet-cli-1.2 pyarrow-0.11.1 python-dateutil-2.7.5 pytz-2018.7 six-1.11.0

machine:~$ parq --help

Command 'parq' not found, did you mean:

  command 'par2' from deb par2
  command 'par' from deb par
  command 'parl' from deb libpar-packer-perl

Try: sudo apt install <deb name>


davidglavas avatar Dec 04 '18 15:12 davidglavas

Not sure why it's not working for you, did you try sudo? Can you post output of which pip which python?

chhantyal avatar Mar 03 '19 19:03 chhantyal

I had the same issue, but I believe I manage to fix it using sudo:

sudo -H pip install parquet-cli

yatsykve avatar Jul 01 '19 12:07 yatsykve

For me, pip pointed that the binary parq is installed in: /home/<username>/.local/bin So i had to: export PATH="$PATH:/home/<username>/.local/bin" in my ~/.zshrc file.

creativcoder avatar Apr 15 '20 13:04 creativcoder