Creating two development environments
Contents
Creating two development environments#
At the end of this tutorial, you will have two different TVM projects in two separate development environments.
Step by Step#
Install the latest stable release of TVM.
pip install git+https://github.com/eduNEXT/tvm.git
Verify the installation.
tvm --version
Create a new project with TVM.
tvm project init <project-name> <tutor-version> # For example: # tvm project init tvm-test v14.0.0
Open the project folder.
cd <project-name>
Activate the project environment.
source .tvm/bin/activate
Run your project.
tutor dev launch
Stop your project.
tutor dev stop
Deactivate the project environment.
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 not have two projects with the same name and tutor version.
Next Steps#
To do more with TVM, check TVM Topic Guides.