ResolvePackageNotFound: Create env using conda and yml file on MacOS

I had same problem and found your question googling for it. ResolvePackageNotFound error describes all packages not installed yet, but required. To solve the problem, move them under pip section: name: ex3 channels: – menpo – defaults dependencies: – cairo=1.14.8=0 – *** – another dependencies, except not found ones – pip: – gst-plugins-base==1.8.0 – bleach==1.5.0 … Read more

How do I remove/delete a virtualenv?

“The only way I can remove it seems to be: sudo rm -rf venv“ That’s it! There is no command for deleting your virtual environment. Simply deactivate it and rid your application of its artifacts by recursively removing it. Note that this is the same regardless of what kind of virtual environment you are using. … Read more