Python-Puzzle-Creator
Python-Puzzle-Creator copied to clipboard
Missing module?
So I booted up the puzzle generator today, and it threw this error:
Traceback (most recent call last):
File "G:\Python-Puzzle-Creator-master\main.py", line 7, in <module>
import chess.uci
ModuleNotFoundError: No module named 'chess.uci'
How can I get this "chess.uci" module? pip says there is no such module.
I just had this issue. The solution is to install the exact versions that are listed on 'requirements.txt'.
To force the 'downgrade' of the previously installed versions you can do the following:
pip install --force-reinstall -v "requests==2.10.0"
Hope this is useful for someone 👍