On my Windows 7 system, I am trying to install as many packages using conda. They are easy to update with
conda update all
Unfortunately, some packages do not appear in the cond, but are available through pip, so for those that I install them with pip. Updating all package packages in windows seems more complicated, but
for /F "delims===" %i in ('pip freeze -l') do pip install -U %i
- This is one way to find.
However, this is an attempt to update all packages, even those installed by conda, I believe.
Is there a way to upgrade only those packages that are installed in pip?
source share