I am working a chess game based on this library: https://pypi.org/project/python-chess/ or https://github.com/niklasf/python-chess
On Jupyter Notebook, if I run this code:
import chess
board = chess.Board()
board
It will display a nice board (i.e. with colors, shape, looking like a chess board). If I run like this:
import chess
board = chess.Board()
print(board)
It will display the board in a much more rudimental way with letters.
The problem is that the only way of seeing the nice board, using the "board" command, is if I am using Jupyter Notebook. If I try to run on Visual Studio or line command the command "board" nothing will happen. It seems that the line command will not support the use of "board" (from their website: Supports Python 3.6+ and PyPy3.IPython/Jupyter Notebook integration).
Is there a way around this? In other words, can I still run "board" on command line and visualize the nice chess board?