Skip to content

Instantly share code, notes, and snippets.

View skupriienko's full-sized avatar
🎯
Focusing

skupriienko

🎯
Focusing
View GitHub Profile
@skupriienko
skupriienko / packages-from-python-to-conda.txt
Last active May 4, 2020 06:03
How to transfer all Python Packages from pip to Anaconda (conda) in Windows?
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