bmild / nerf

Code release for NeRF (Neural Radiance Fields)
http://tancik.com/nerf
MIT License
9.6k stars 1.34k forks source link

Conda environment.yml installs wrong tensorflow-estimator version #68

Open amoffatt opened 3 years ago

amoffatt commented 3 years ago

On my system, Conda installed tensorflow-estimator 2.2, which is incompatible with tf 1.15

This can be solved manually after the environment is created by running conda install tensorflow-estimator==1.15.1

But adding tensorflow-estimator==1.15 might be useful if others are running into this too.

swarrier246 commented 3 years ago

The environment.yml file installed an empty environment in my case(I'm on an Ubuntu 18.04.4 LTS CPU). I'm not sure why; I had to manually install all the required packages.

insookim43 commented 2 years ago

Though I am a year later here, I am having same problem. I was searching which tensorflow-estimator version i need, and this was it. thank you!