Skip to content

Commit 0f452cd

Browse files
committed
fix indent
1 parent a869d56 commit 0f452cd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/machine-learning/v1/how-to-set-up-training-targets.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,13 +194,14 @@ See these notebooks for examples of configuring jobs for various training scenar
194194

195195
Consider upgrading to the latest version of azureml-core: `pip install -U azureml-core`.
196196

197-
If you run into this issue for local jobs, check the version of PyJWT installed in your environment where . you're starting jobs. The supported versions of PyJWT are < 2.0.0. Uninstall PyJWT from the environment if the version is >= 2.0.0. You may check the version of PyJWT, uninstall, and install the right version as follows:
197+
If you run into this issue for local jobs, check the version of PyJWT installed in your environment where . you're starting jobs. The supported versions of PyJWT are < 2.0.0. Uninstall PyJWT from the environment if the version is >= 2.0.0. You may check the version of PyJWT, uninstall, and install the right version as follows:
198+
198199
1. Start a command shell, activate conda environment where azureml-core is installed.
199200
2. Enter `pip freeze` and look for `PyJWT`, if found, the version listed should be < 2.0.0
200201
3. If the listed version isn't a supported version, `pip uninstall PyJWT` in the command shell and enter y for confirmation.
201202
4. Install using `pip install 'PyJWT<2.0.0'`
202-
203-
If . you're submitting a user-created environment with your job, consider using the latest version of azureml-core in that environment. Versions >= 1.18.0 of azureml-core already pin PyJWT < 2.0.0. If you need to use a version of azureml-core < 1.18.0 in the environment you submit, make sure to specify PyJWT < 2.0.0 in your pip dependencies.
203+
204+
If you're submitting a user-created environment with your job, consider using the latest version of azureml-core in that environment. Versions >= 1.18.0 of azureml-core already pin PyJWT < 2.0.0. If you need to use a version of azureml-core < 1.18.0 in the environment you submit, make sure to specify PyJWT < 2.0.0 in your pip dependencies.
204205

205206

206207
* **ModuleErrors (No module named)**: If . you're running into ModuleErrors while submitting experiments in Azure Machine Learning, the training script is expecting a package to be installed but it isn't added. Once you provide the package name, Azure Machine Learning installs the package in the environment used for your training job.

0 commit comments

Comments
 (0)