Pipenv: Command Not Found

后端 未结 6 469
Happy的楠姐
Happy的楠姐 2020-12-22 16:12

I\'m new to Python development and attempting to use pipenv. I ran the command pip install pipenv, which ran successfully:

...
Successfully buil         


        
6条回答
  •  醉酒成梦
    2020-12-22 16:33

    That happens because you are not installing it globally (system wide). For it to be available in your path you need to install it using sudo, like this:

    $ sudo pip install pipenv
    

提交回复
热议问题