Skip to content

Commit 9817f46

Browse files
authored
Update how-to-troubleshoot-environments.md
1 parent 0b857c0 commit 9817f46

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

articles/machine-learning/how-to-troubleshoot-environments.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Environment isolation implies that Python dependencies installed in the base ima
4242

4343
### Create and manage environments
4444

45-
You can create and manage environments from clients like AzureML Python SDK, AzureML CLI, AzureML Studio UI, VS code extension.
45+
You can create and manage environments from clients like AzureML Python SDK, AzureML CLI, AzureML Studio UI, Visual Studio Code extension.
4646

4747
"Anonymous" environments are automatically registered in your workspace when you submit an experiment without registering or referencing an already existing environment.
4848
They aren't listed but you can retrieve them by version or label.
@@ -68,7 +68,7 @@ There are some ways to decrease the impact of vulnerabilities:
6868

6969
#### *Vulnerabilities vs Reproducibility*
7070

71-
Reproducibility is one of the foundations of software development. While developing production code, a repeated operation must guarantee the same
71+
Reproducibility is one of the foundations of software development. When you're developing production code, a repeated operation must guarantee the same
7272
result. Mitigating vulnerabilities can disrupt reproducibility by changing dependencies.
7373

7474
AzureML's primary focus is to guarantee reproducibility. Environments fall under three categories: curated,
@@ -1141,7 +1141,7 @@ See the [samples repository](https://aka.ms/azureml/environment/train-r-models-c
11411141

11421142
**Troubleshooting steps**
11431143

1144-
Ensure that you are specifying your environment name correctly, along with the correct version
1144+
Ensure that you're specifying your environment name correctly, along with the correct version
11451145
* `path-to-resource:version-number`
11461146

11471147
You should specify the 'latest' version of your environment in a different way
@@ -1233,7 +1233,7 @@ This issue can happen when a Docker image pull fails due to a network issue.
12331233
**Potential causes:**
12341234
* Network connection issue, which could be temporary
12351235
* Firewall is blocking the connection
1236-
* ACR is unreachable and there's network isolation. For more details, see [ACR unreachable](#acr-unreachable).
1236+
* ACR is unreachable and there's network isolation. For more information, see [ACR unreachable](#acr-unreachable).
12371237

12381238
**Affected areas (symptoms):**
12391239
* Failure in building environments from UI, SDK, and CLI.
@@ -1640,7 +1640,7 @@ Alternatively, use a different version of Python that's compatible with the pack
16401640
16411641
### Conda bare redirection
16421642
<!--issueDescription-->
1643-
This issue can happen when a package is specified on the command line using "<" or ">" without using quotes, causing conda environment creation or update to fail.
1643+
This issue can happen when you've specified a package on the command line using "<" or ">" without using quotes, which can cause conda environment creation or update to fail.
16441644
16451645
**Affected areas (symptoms):**
16461646
* Failure in building environments from UI, SDK, and CLI.
@@ -1671,7 +1671,7 @@ This issue can happen when your image build fails during Python package installa
16711671
16721672
**Potential causes:**
16731673
* There are many issues that could cause this error
1674-
* This is a generic message that's surfaced when the error you're encountering isn't yet covered by AzureML analysis
1674+
* This message is generic and is surfaced when AzureML analysis doesn't yet cover the error you're encountering
16751675
16761676
**Affected areas (symptoms):**
16771677
* Failure in building environments from UI, SDK, and CLI.
@@ -1687,7 +1687,7 @@ Leave feedback for the AzureML team to analyze the error you're experiencing
16871687
16881688
### Can't uninstall package
16891689
<!--issueDescription-->
1690-
This can happen when pip fails to uninstall a Python package that was installed via the operating system's package manager.
1690+
This issue can happen when pip fails to uninstall a Python package that the operating system's package manager installed.
16911691
16921692
**Potential causes:**
16931693
* An existing pip problem or a problematic pip version
@@ -1700,8 +1700,8 @@ This can happen when pip fails to uninstall a Python package that was installed
17001700
17011701
**Troubleshooting steps**
17021702
1703-
Read the following and determine if your failure is caused by an existing pip problem
1704-
* [Cannot uninstall while creating Docker image](https://stackoverflow.com/questions/63383400/error-cannot-uninstall-ruamel-yaml-while-creating-docker-image-for-azure-ml-a)
1703+
Read the following and determine if an existing pip problem caused your failure
1704+
* [Can't uninstall while creating Docker image](https://stackoverflow.com/questions/63383400/error-cannot-uninstall-ruamel-yaml-while-creating-docker-image-for-azure-ml-a)
17051705
* [pip 10 disutils partial uninstall issue](https://github.com/pypa/pip/issues/5247)
17061706
* [pip 10 no longer uninstalls disutils packages](https://github.com/pypa/pip/issues/4805)
17071707
@@ -1716,7 +1716,7 @@ Try creating a separate environment using conda
17161716
## *Make issues*
17171717
### No targets specified and no makefile found
17181718
<!--issueDescription-->
1719-
This issue can happen when no targets are specified and no makefile is found when running `make`.
1719+
This issue can happen when you haven't specified any targets and no makefile is found when running `make`.
17201720
17211721
**Potential causes:**
17221722
* Makefile doesn't exist in the current directory
@@ -1727,12 +1727,12 @@ This issue can happen when no targets are specified and no makefile is found whe
17271727
* Failure in running jobs because AzureML implicitly builds the environment in the first step.
17281728
17291729
**Troubleshooting steps**
1730-
* Ensure that the makefile is spelled correctly
1730+
* Ensure that you've spelled the makefile correctly
17311731
* Ensure that the makefile exists in the current directory
17321732
* If you have a custom makefile, specify it using ```make -f custommakefile```
17331733
* Specify targets in the makefile or in the command line
17341734
* Configure your build and generate a makefile
1735-
* Ensure your makefile is formatted correctly and tabs are used for indentation
1735+
* Ensure that you've formatted your makefile correctly and that you've used tabs for indentation
17361736
17371737
**Resources**
17381738
* [GNU Make](https://www.gnu.org/software/make/manual/make.html)
@@ -1741,7 +1741,7 @@ This issue can happen when no targets are specified and no makefile is found whe
17411741
## *Docker push issues*
17421742
### Failed to store Docker image
17431743
<!--issueDescription-->
1744-
This issue can happen when a Docker image fails to be stored (pushed) to a container registry.
1744+
This issue can happen when a Docker image push to a container registry fails.
17451745
17461746
**Potential causes:**
17471747
* A transient issue has occurred with the ACR associated with the workspace
@@ -1754,7 +1754,7 @@ This issue can happen when a Docker image fails to be stored (pushed) to a conta
17541754
17551755
**Troubleshooting steps**
17561756
1757-
Retry the environment build if you suspect this is a transient issue with the workspace's Azure Container Registry (ACR)
1757+
Retry the environment build if you suspect the failure is a transient issue with the workspace's Azure Container Registry (ACR)
17581758
17591759
If your container registry is behind a virtual network or is using a private endpoint in an [unsupported region](https://aka.ms/azureml/environment/private-link-availability)
17601760
* Configure the container registry by using the service endpoint (public access) from the portal and retry

0 commit comments

Comments
 (0)