You are on page 1of 1

Happy 20th Birthday CMake!

Marian LuparuSeptember 16, 2020


CMake is now 20! Kitware posted yesterday an interview with Bill Hoffman,
the original creator for CMake and shared that August 31 was CMake's 20th
birthday Here, in the C++ team, we are not only heavy CMake users. We also
believe that CMake is a foundational piece for all C++ cross-platform
developers and, as such, we strive to enable the ... I'm trying to install
tensorflow r0.11. I tried

pip install tensorflow==r0.11


pip install tensorflow<0.12

But I get this error

Could not find a version that satisfies the requirement tensorflow==0.11.0 (from
versions: 0.12.0rc0, 0.12.0rc1, 0.12.0, 0.12.1)
No matching distribution found for tensorflow==0.11.0

I assume pip is no longer support depricated versions, how can I get it?

I also tried

pip install git+git://github.com/tensorflow/tensorflow@r0.11

Cloning git://github.com/tensorflow/tensorflow (to r0.11) to


/private/var/folders/1p/7km73m0s2cvdfb1js3ct8_mh0000gn/T/pip-JMMIRP-build
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
IOError: [Errno 2] No such file or directory:
'/private/var/folders/1p/7km73m0s2cvdfb1js3ct8_mh0000gn/T/pip-JMMIRP-
build/setup.py'

----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in
/private/var/folders/1p/7km73m0s2cvdfb1js3ct8_mh0000gn/T/pip-JMMIRP-build/

You might also like