Python - pipenv • (pipenv) README.txt • Python Virtual Environment • Create a New pipenv venv
Start the python virtual environment: 1. cd to this folder. 2. pipenv shellInstall the dependencies for this project: pipenv install~Ex.: pipenv install numpyREMEMBER to save the dependencies (updated the Lock file): pipenv lockIf you have changed the name of the folder, moved it or similar,REMEBER to reinstall the venv, and the dependencies with: pipenv sync----------- After the project is completed: -----------Check vulnerabilities: pipenv checkSave the current versions of each package: pipenv lockInstall the pipfile.lock dependencies: pipenv install --ignore-pipfile