0

whats the way to remove all packages in python 2.7 at one time, i've installed lot of packages and messed it up, so instead of manually uninstall them one by one, i want to look for a method that can get rid of those packages automatically, so i can start clean sheet again. Thank you in advance. By the way, im using windows 10 and has pip,conda installed in python.

AizuddinAzman
  • 1,307
  • 2
  • 9
  • 5

1 Answers1

0

use the all flag:

conda uninstall -n environment --all

if you are in the environment and its active:

conda uninstall --all
Kelvin
  • 1,357
  • 2
  • 11
  • 22