Hello,
I am following with great interest the various lessons.
Now, I would like to do some stuff on my own and need also Tensorflow (possibly the latest 1.7 version with GPU support installed in the fastai anaconda environment).
FastAI Library doesn’t use TensorFlow, so there’s no reason to include it. If you are having trouble installing it, you might get better help if you post this in StackOverflow.
Also, I would say create two different conda environments. One for fastai and one for your Tensorflow experiments. That way it might be easier to keep them in sync. But if your usecase is to use some functions from both, you may need to combine and have one script. Most folks here in FastAI community don’t deal with this problem.
Alternatively, if you want my own images which have a big bunch of libraries preinstalled try:
docker pull agispof/research:tensorflow
you can get gpu ready images as well but you need to have nvidia-docker installed as well to get them running and you would need to get the gpu variants, i.e. run
docker pull tensorflow/tensorflow:latest-gpu for the official the tensorflow one, and/or docker pull agispof/research:tensorflow-gpu for mine.
I did conda install tensorflow-gpu and got the latest tensorflow installed and working with no problems. You may need to also update to the latest CUDA (9.0, 9.1 or 9.2) and remove the old versions of CUDA though.