Visual Studio Code – "'…/src/onnx/gen_proto.py' is not a Conan command" when building onnx
I have the following conanfile.py in my project on which I run the command conan install . --output-folder=build --build=missing -v. import os from conan import ConanFile class ProjectRecipe(ConanFile): settings = "os", "compiler", "build_type", "arch" generators = "CMakeToolchain", "CMakeDeps" def requirements(self):…