Installation

VSCode setting up

pip

python -m pip install --user --upgrade pip # install for current user only
python -m pip install --upgrade pip # need to run cmder as administrator
# INSTALL A PACKAGE
pip install <package> # admin <-- SHOULDN'T!!!
pip install --user <package> # current user only

# LIST ALL INSTALLED PACKAGES
pip freeze
# REMOVE
pip uninstall <package>
pip uninstall --user <package
# CHECK VERSION OF A PACKAGE
pip show <package>
# version <=
pip3 install -U "pillow<7"
# Install a package from a git repository
pip install git+https://github.com/TimeSynth/TimeSynth.git

Install packages with requirement file,

pip install -r requirements.txt