On my Ubuntu 18.04.1 LTS I have installed pipenv package using pip package manager. Package is accessible from ssh login bash.
$ pipenv --version
will print out following output:
pipenv, version 2018.10.13
What want:
I need to run $ pipenv --version command using absolute path. So This is how it should look like:
$ /absolute/path/to/pipenv --version
However so far it looks like it does not work by this way.
What I tried:
$ pip show pipenv
Name: pipenv
Version: 2018.10.13
Location: /user/.local/lib/python2.7/site-packages
Requires: enum34, virtualenv, typing, certifi, virtualenv-clone, pip, setuptools
...
I copied location from output above, and I tried these, but still does not work:
$ /user/.local/lib/python2.7/site-packages/pipenv --version$ /user/.local/lib/python2.7/site-packages/pipenv/pipenv --version
I also tried:
which pipenv - outputs empty string