Python in VSCode
Python coding in VS Code Steps: Install first python in windows Install extensions in VS Code pylint python package black formatter Set python path in system environment path variable Setup vertual environment As it will help you to have dependencies and packages to be installed only for the workspace folder rather than for global system and will help to keep the projects isolated with each other Command: python -m venv .venv Command to activate venv: .\.venv\Scripts\activate It will create a new folder in your existing python project folder and will install required python packages to run your code and you can install dependencies as well in it. Setup dependencies by using requirements.txt file Provide all packages name in txt file and then you can use single pip command to install them To check pip version you need to type Command: pip --version - but after navigating to desired location where pip is installed in python folder. Command: python -m pip --version ...