python

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
python [2021/06/04 13:32] 192.168.1.41python [2021/07/27 11:39] (current) – [pip] 192.168.1.44
Line 43: Line 43:
 runtime: runtime:
     C:\Users\Varimathras\AppData\Roaming\jupyter\runtime     C:\Users\Varimathras\AppData\Roaming\jupyter\runtime
 +</code>
 +
 +===== pip =====
 +Update All Python Packages On Windows (PowerShell)
 +<code>
 +pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}
 +</code>
 +
 +<code>
 +pip freeze | %{$_.split('==')[0]} | %{pipwin install --upgrade $_}
 </code> </code>
  
Line 48: Line 58:
   * How to activate an Anaconda environment - https://stackoverflow.com/questions/20081338/how-to-activate-an-anaconda-environment   * How to activate an Anaconda environment - https://stackoverflow.com/questions/20081338/how-to-activate-an-anaconda-environment
   * how to close running jupyter notebook servers? #2844 - https://github.com/jupyter/notebook/issues/2844   * how to close running jupyter notebook servers? #2844 - https://github.com/jupyter/notebook/issues/2844
 +  * How To Update All Python Packages - https://www.activestate.com/resources/quick-reads/how-to-update-all-python-packages/
  
  • python.1622784755.txt.gz
  • Last modified: 2021/06/04 13:32
  • by 192.168.1.41