Skip to content

sshuen30/pipenv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

pipenv

  • Install pip
sudo apt-get install python3-pip
  • Install pipenv
pip3 install pipenv
  • If you see this message, this shows pipenv is saved in another folder which is not in the PATH

Screenshot 2024-02-25 153711

  • To see your current path
echo $PATH
  • Add the folder to PATH by running this command
export PATH="/home/kasm-user/.local/bin:$PATH"
  • To make this persistent after reboot, add the above command into the EOL of the ~/.bashrc
sudo nano ~/.bashrc
  • To run pipenv, cd to your project folder and type this command
pipenv shell
  • You have created a virtual environment

About

How to install pipenv

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published