Creating two development environments
Contents
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. - 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 quickstart 
- 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’t have two projects with the same name and tutor version.
Next Steps#
- To do more with TVM, check TVM Topic Guides. 
