ncrocfer/clf

no command found after running install

Closed this issue · 2 comments

ran the setup from pip...

david@server:~$ pip install clf
Downloading/unpacking clf
  Downloading clf-0.5.4.tar.gz
  Running setup.py (path:/tmp/pip-build-7rj4kw/clf/setup.py) egg_info for package clf

Downloading/unpacking Pygments==2.0.2 (from clf)
  Downloading Pygments-2.0.2-py2-none-any.whl (672kB): 672kB downloaded
Downloading/unpacking docopt==0.6.2 (from clf)
  Downloading docopt-0.6.2.tar.gz
  Running setup.py (path:/tmp/pip-build-7rj4kw/docopt/setup.py) egg_info for package docopt

Downloading/unpacking requests==2.6.0 (from clf)
  Downloading requests-2.6.0-py2.py3-none-any.whl (469kB): 469kB downloaded
Installing collected packages: clf, Pygments, docopt, requests
  Running setup.py install for clf

    Installing clf script to /home/david/.local/bin
  Running setup.py install for docopt

Successfully installed clf Pygments docopt requests
Cleaning up...

tried using the example provided

david@server:~$ clf python server
No command 'clf' found, did you mean:
 Command 'clm' from package 'mcl' (universe)
 Command 'crlf' from package 'wcstools' (universe)
 Command 'tlf' from package 'tlf' (universe)
 Command 'cl' from package 'cl-launch' (universe)
 Command 'clif' from package 'clif' (universe)
 Command 'clp' from package 'coinor-clp' (universe)
 Command 'cf' from package 'confluence' (universe)
 Command 'cli' from package 'mono-runtime' (main)
 Command 'alf' from package 'seqan-apps' (universe)
 Command 'lcf' from package 'ucf' (main)
clf: command not found
david@Merovingian:~$ clf tar
No command 'clf' found, did you mean:
 Command 'cl' from package 'cl-launch' (universe)
 Command 'alf' from package 'seqan-apps' (universe)
 Command 'tlf' from package 'tlf' (universe)
 Command 'clm' from package 'mcl' (universe)
 Command 'lcf' from package 'ucf' (main)
 Command 'clif' from package 'clif' (universe)
 Command 'crlf' from package 'wcstools' (universe)
 Command 'cf' from package 'confluence' (universe)
 Command 'clp' from package 'coinor-clp' (universe)
 Command 'cli' from package 'mono-runtime' (main)
clf: command not found

no joy... ubuntu 15.04

sounds like you should be setting your PATH in like .bash_profile or such to something like

export PATH=~/.local/bin:$PATH

Yes indeed, you installed clf in your ~/.local/bin folder. Just add this folder in your PATH variable as @mzupan said.