Skip to content

Commit 5151b96

Browse files
Merge pull request #227748 from lykelly19/patch-3
Create & add description to Make issues section
2 parents fa98cfe + d5dcb30 commit 5151b96

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

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

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1714,6 +1714,31 @@ pip install --ignore-installed [package]
17141714
17151715
Try creating a separate environment using conda
17161716
1717+
## *Make issues*
1718+
### No targets specified and no makefile found
1719+
<!--issueDescription-->
1720+
This issue can happen when no targets are specified and no makefile is found when running `make`.
1721+
1722+
**Potential causes:**
1723+
* Makefile doesn't exist in the current directory
1724+
* No targets are specified
1725+
1726+
**Affected areas (symptoms):**
1727+
* Failure in building environments from UI, SDK, and CLI.
1728+
* Failure in running jobs because it will implicitly build the environment in the first step.
1729+
1730+
**Troubleshooting steps**
1731+
* Ensure that the makefile is spelled correctly
1732+
* Ensure that the makefile exists in the current directory
1733+
* If you have a custom makefile, specify it using ```make -f custommakefile```
1734+
* Specify targets in the makefile or in the command line
1735+
* Configure your build and generate a makefile
1736+
* Ensure your makefile is formatted correctly and tabs are used for indentation
1737+
1738+
**Resources**
1739+
* [GNU Make](https://www.gnu.org/software/make/manual/make.html)
1740+
<!--/issueDescription-->
1741+
17171742
## *Docker push issues*
17181743
### Failed to store Docker image
17191744
<!--issueDescription-->

0 commit comments

Comments
 (0)