1
~/twint$ pipenv install -e git+https://github.com/twintproject/twint.git#egg=twint
pipenv: command not found

I have pip and python installed.

Yaron
  • 544

2 Answers2

4

In Python3, you can install it with:

$~ pip3 install pipenv
0

It seems pipenv can be installed directly from the apt repositories. Try running sudo apt install pipenv.

Daniel M.
  • 2,046