Quickstart#

Let’s start by configuring and running our first project.

Index#

Requirements#

TVM works with Tutor for that reason the Tutor requirements are also the TVM requirements.

Basic Requirements:

  • Software:
  • Hardware:
    • Minimum configuration: 4 GB RAM, 2 CPU, 8 GB disk space

    • Recommended configuration: 8 GB RAM, 4 CPU, 25 GB disk space

For more information, see the Tutor requirements.

Step by Step#

  1. Install the latest stable release of TVM.

    pip install git+https://github.com/eduNEXT/tvm.git
    
  2. Verify the installation.

    tvm --version
    
  3. Create a new project with TVM.

    tvm project init <project-name> <tutor-version>
    
    # For example:
    # tvm project init tvm-test v14.0.0
    
  4. Open the project folder.

    cd <project-name>
    
  5. Activate the project environment.

    source .tvm/bin/activate
    
  6. Run your project.

    tutor local quickstart
    

Next Steps#