Auto remove unused imports
Run JavaScript, C#, F#, R, SQL, KQL, PowerShell in Jupyter notebook of VSCode
Pylint
Ignore some pylint for jupyter notebook
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
AttributeError: 'NoneType' object
# 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