This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| How to transfer all Python Packages from pip to Anaconda (conda) in Windows? | |
| Here's the solution: | |
| 1. For upgrade all your python packages enter in cmd: | |
| pip list --outdated --format freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_} | |
| 2. Next enter in cmd: | |
| pip freeze |