- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
We've just installed the Windows tool chain for Open VINO, latest version.
Upon running the first batch file "setupvars.bat", we have run into the observation that all calls made to python and pip are not preceded with the necessary "call". This means that none of the batch files will execute past the first call to any python item because the "cmd" system in windows spawns off the call as a separate process and closes the parent process.
Is there a global remedy for this?
For example: (test.bat not working)
echo Foo
python --version
echo Bar
Output:
Foo
Python 3.8.10
Where as:
echo Foo
CALL python --version
echo Bar
Output:
Foo
Python 3.8.10
Bar
Without the "call" predecessor none of these scripts are going to work.......
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Digs_Solutions,
Greetings to you.
I reproduced the issue with my Windows 10 setup and was able to get the desired result with and without the CALL function. Note that I ran the batch file without the Windows toolchain installed. I share with you the screenshot of both outputs:
Without CALL function:
With CALL function:
This issue is more towards the Windows environment setup, we recommend that you send this question to a Windows-related forum for better reach.
Sincerely,
Zulkifli
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Dig_Solutions,
Thank you for your question. If you need any additional information from Intel, please submit a new question as this thread is no longer being monitored.
Sincerely,
Zulkifli
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page