Installation¶
Using pip
¶
chess-scanparser
is available over PyPI. Run
pip install chess-scanparser
to install.
From source¶
Clone the source repository from github.
git clone https://github.com/CHESSComputing/chess-scanparser.git cd chess-scanparser
Set a valid version number. In
setup.py
, replace:version = 'PACKAGE_VERSION'
with
version = 'v2024.6.24'
Setup a local installation prefix for your version of python
mkdir -p install/lib/python<yourpythonversion>/site-packages export PYTHONPATH=$PWD/install/lib/python<yourpythonversion>/site-packages
Use the setup script to install the package
python setup.py install --prefix=$PWD/install