mehrdadh commented on code in PR #13818: URL: https://github.com/apache/tvm/pull/13818#discussion_r1092428723
########## apps/microtvm/arduino/template_project/microtvm_api_server.py: ########## @@ -28,7 +28,7 @@ from string import Template from packaging import version -from tvm.micro.project_api import server +import server Review Comment: client starts the microtvm API server, previously it was using sys.executable to directly run microtvm_api_server.py file, however that mean it was using a global python ENV which is the same for any project api server. To distinguish between different project servers and their python requirements we have an alternative to run a bash script to start the sever. This was originally part of the project API design but never used. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
