Creating two development environments ###################################### At the end of this Tutorial, you will have two different TVM Projects to have two development environments. Step by Step ------------- #. Install the latest stable release of TVM. .. code-block:: bash pip install git+https://github.com/eduNEXT/tvm.git #. Verify the installation. .. code-block:: bash tvm --version #. Create a new project with TVM. .. code-block:: bash tvm project init # For example: # tvm project init tvm-test v14.0.0 #. Open the project folder. .. code-block:: bash cd #. Activate the project environment. .. code-block:: bash source .tvm/bin/activate #. Run your project. .. code-block:: bash tutor dev quickstart #. Stop your project. .. code-block:: bash tutor dev stop #. Deactivate the project environment. .. code-block:: bash tvmoff #. Repeat steps 3 to 8 using the project-name and tutor-version you want. .. note:: You can have as many projects as you want, but you can't have two projects with the same name and tutor version. Next Steps ----------- - To do more with TVM, check :doc:`TVM Topic Guides `.