latitudegames / AIDungeon

Infinite adventures await!
http://www.aidungeon.io/
MIT License
3.19k stars 554 forks source link

[HELP] Can't seem to run install.sh. #213

Closed Montydog9 closed 4 years ago

Montydog9 commented 4 years ago

It splooges out an error which says: ERROR: Could not find a version that satisfies the requirement tensorflow==1.15 (from -r C:/SSD Games/AIDungeon/requirements.txt (line 7)) (from versions: none) ERROR: No matching distribution found for tensorflow==1.15 (from -r C:/SSD Games/AIDungeon/requirements.txt (line 7))

I've installed it but still get the error

ben-bay commented 4 years ago

This happens to me when I use the wrong version in Python, like python 3.8. Check your version?

numpythuckles commented 4 years ago

The version of pip distributed with a bunch of OS's (Ubuntu 18.04 Bionic in my case) doesn't recognize tensorflow==1.15 as a valid version. So, update pip right?

...Except upgrading pip breaks pip right now...https://github.com/pypa/pip/issues/5599

Only valid workaround for the breakage is to use an explicit call from python.

So upgrade pip then modify the install script manually to: python -m pip install -r requirements.txt