-1
I tried to install using apt-get install pipenv
, apt install pipenv
but I was unsuccessful.
-1
I tried to install using apt-get install pipenv
, apt install pipenv
but I was unsuccessful.
1
To solve the above problem, I first had to install the command pip
, using sudo apt install python3-pip
and subsequently sudo pip3 install pipenv
Browser other questions tagged python django
You are not signed in. Login or sign up in order to post.
Which is how it is quoted in documentation. Were you really having the problem or did you just post the question so you could answer it? You got confused.
– Woss
Anyway I edited the answer to include your link @Andersoncarloswoss
– lazyFox
@lazyFox "answer" :)
– Guilherme Nascimento
Exactly, who said otherwise? xd
– lazyFox
@lazyFox sorry, is that I had entered the Delorean, but I’m back in the future now :)
– Guilherme Nascimento
Install things with PIP right into the system’s Python (that is, by doing
sudo pip ...
can be very dangerous for the system to remain stable and upgradeable and is discouraged. In particular if Pip installs a file that is then present in a package.deb
system, this other package will not be able to be installed or updated. The above path should be used as last resource.– jsbueno