In this tutorial, I will show you a complex command to update all the modules and packages installed in the python version installed on the Windows operating system.
Start the PowerShell command line and use this command:
1 | pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_} |