How do I completely remove my PyTorch and ONNX installations?

I created a new anaconda environment but I forgot to activate it before installing PyTorch with conda install pytorch-cpu torchvision-cpu -c pytorch and onnx with pip install ./onnx

How do I safely delete these installations ?

1 Answer

pip uninstall onnx
conda uninstall pytorch-cpu torchvision-cpu pytorch

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like