lengstrom/fast-style-transfer

Could not find a version that satisfies the requirement tensorflow==0.11.0

yuis-ice opened this issue · 1 comments

I did run following ones as the installation guide.

git clone https://github.com/lengstrom/fast-style-transfer.git
cd fast-style-transfer

pyenv local 2.7.9

pip2.7 install --upgrade pip
pip2.7 install virtualenv
python2.7 -m virtualenv dev
source dev/bin/activate

cat << 'EOT' > requirements.txt
tensorflow==0.11.0
Pillow==3.4.2
scipy==0.18.1
numpy==1.11.2
EOT

sudo apt update ; sudo apt install ffmpeg -y
pip install -r requirements.txt

Then I got following error.

ERROR: Could not find a version that satisfies the requirement tensorflow==0.11.0 (from -r requirements.txt (line 1)) (from versions: 0.12.1, 1.0.0, 1.0.1, 1.1.0rc0, 1.1.0rc1, 1.1.0rc2, 1.1.0, 1.2.0rc0, 1.2.0rc1, 1.2.0rc2, 1.2.0, 1.2.1, 1.3.0rc0, 1.3.0rc1, 1.3.0rc2, 1.3.0, 1.4.0rc0, 1.4.0rc1, 1.4.0, 1.4.1, 1.5.0rc0, 1.5.0rc1, 1.5.0, 1.5.1, 1.6.0rc0, 1.6.0rc1, 1.6.0, 1.7.0rc0, 1.7.0rc1, 1.7.0, 1.7.1, 1.8.0rc0, 1.8.0rc1, 1.8.0, 1.9.0rc0, 1.9.0rc1, 1.9.0rc2, 1.9.0, 1.10.0rc0, 1.10.0rc1, 1.10.0, 1.10.1, 1.11.0rc0, 1.11.0rc1, 1.11.0rc2, 1.11.0, 1.12.0rc0, 1.12.0rc1, 1.12.0rc2, 1.12.0, 1.12.2, 1.12.3, 1.13.0rc0, 1.13.0rc1, 1.13.0rc2, 1.13.1, 1.13.2, 1.14.0rc0, 1.14.0rc1, 1.14.0, 1.15.0rc0, 1.15.0rc1, 1.15.0rc2, 1.15.0rc3, 1.15.0, 1.15.2, 2.0.0a0, 2.0.0b0, 2.0.0b1, 2.0.0rc0, 2.0.0rc1, 2.0.0rc2, 2.0.0, 2.0.1, 2.1.0rc0, 2.1.0rc1, 2.1.0rc2, 2.1.0)
ERROR: No matching distribution found for tensorflow==0.11.0 (from -r requirements.txt (line 1))

This worked for me

!apt install ffmpeg
!pip install tensorflow==0.12.1
!pip install numpy==1.11.2
!pip install scipy==0.18.1
!pip install pillow==3.4.2