Skip to content

Commit fb4f6e4

Browse files
authored
Create & add description to Make issues section
1 parent d2559d2 commit fb4f6e4

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

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

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1714,6 +1714,28 @@ 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 does not 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 currect 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 you makefile is formatted correctly and tabs are used for indentation
1737+
<!--/issueDescription-->
1738+
17171739
## *Docker push issues*
17181740
### Failed to store Docker image
17191741
<!--issueDescription-->

0 commit comments

Comments
 (0)