Skip to content

Latest commit

 

History

History
64 lines (44 loc) · 2.3 KB

File metadata and controls

64 lines (44 loc) · 2.3 KB

Setup

If you're on Debian/Ubuntu, this should install all needed system dependencies:

apt install build-essential python3 curl git zlib1g-dev libssl-dev libbz2-dev libffi-dev libreadline-dev liblzma-dev libsqlite3-dev

Requirements:

  • Pyenv for installing Python 3.12+
    • Recommended installation method: the "automatic installer" i.e. curl https://pyenv.run | bash
    • Follow the instructions at the end of the output to make pyenv available in your shell. You may need to restart your shell or even log out and log in again to make the pyenv command available.
  • Poetry for installing dependencies
    • Recommended installation method: the "official installer" i.e. curl -sSL https://install.python-poetry.org | python3 -
  • Docker (needed to submit the project)
    • The version that comes with your distro should be enough: apt install docker.io, but you can get instructions for installing the latest version from https://docs.docker.com/engine/install/
    • On Linux, remember to add yourself to the docker group: adduser YOUR_USERNAME docker and then log out and log in again.
    • For other operating systems, try Docker Desktop

Install dependencies:

# Install Python specified in `.python-version`
pyenv install
# Install dependencies specified in `pyproject.toml`
poetry install

If pyenv install gives an error about _tkinter, you can ignore it. If you see other errors, you may have to investigate.

If you have trouble with Poetry not picking up pyenv's python installation, try poetry env remove --all and then poetry install again.

Developing

Typecheck and run local unit tests:

./check.sh
# or individually:
poetry run mypy .
poetry run pytest -vv

Once you've finished your compiler, edit src/__main__.py to call your compiler in function call_compiler. Then you can run your compiler on a source code file like this:

./compiler.sh compile path/to/source/code --output=path/to/output/file

You can send the finished compiler to Test Gadget for evaluation with:

./test-gadget.py submit

See the course page for more information.

IDE setup

Recommended VSCode extensions:

  • Python
  • Pylance
  • autopep8