File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
articles/machine-learning Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -1714,6 +1714,31 @@ pip install --ignore-installed [package]
1714
1714
1715
1715
Try creating a separate environment using conda
1716
1716
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
+
1717
1742
## *Docker push issues*
1718
1743
### Failed to store Docker image
1719
1744
<!--issueDescription-->
You can’t perform that action at this time.
0 commit comments