Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
nni
Commits
7217b507
Unverified
Commit
7217b507
authored
Sep 16, 2020
by
J-shang
Committed by
GitHub
Sep 16, 2020
Browse files
modify the pythonPath of PythonShell under windows to python (#2882)
Co-authored-by:
Ning Shang
<
nishang@microsoft.com
>
parent
10d7ece1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
src/nni_manager/training_service/reusable/aml/amlClient.ts
src/nni_manager/training_service/reusable/aml/amlClient.ts
+1
-0
No files found.
src/nni_manager/training_service/reusable/aml/amlClient.ts
View file @
7217b507
...
...
@@ -41,6 +41,7 @@ export class AMLClient {
const
deferred
:
Deferred
<
string
>
=
new
Deferred
<
string
>
();
this
.
pythonShellClient
=
new
PythonShell
(
'
amlUtil.py
'
,
{
scriptPath
:
'
./config/aml
'
,
pythonPath
:
process
.
platform
===
'
win32
'
?
'
python
'
:
'
python3
'
,
pythonOptions
:
[
'
-u
'
],
// get print results in real-time
args
:
[
'
--subscription_id
'
,
this
.
subscriptionId
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment