conda create --name nerf -y python=3.8#创建名为nerf的环境conda activate nerf#切换到nerf环境 然后安装需要的库,都在nerf代码文件的requirements.txt里 cd nerf-pytorch#进入到你nerf的文件夹,根据自己的文件位置调整python -m pip install --upgrade pip#升级一下pip,防止莫名其妙的错误pip install -r requir...