运行stylegan-v2报错:html
error: #error "C++ versions less than C++11 are not supported.c++
解决方法:less
打开 dnnlib/tflib/custom_ops.py的 修改第64行:spa
将 cmd = 'nvcc ' + opts.strip().net
改成:cmd = 'nvcc --std=c++11 -DNDEBUG ' + opts.strip() c++11