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

Python is in a Conda environment, but it has not been activated in a Windows virtual environment

The error message tells you that the Python interpreter from the Conda environment was found, but that conda activate <envname> has not been called. Did you put the bin/ directory of the Conda environment into the Windows search path? That would be wrong. You’re talking about virtualenvs. But Python virtual environments are something else than … Read more