You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue can happen when pip fails to install a Python package due to an invalid operator found in the requirement.
1744
+
1745
+
**Potential causes:**
1746
+
* There's an invalid operator found in the Python package requirement
1747
+
1748
+
**Affected areas (symptoms):**
1749
+
* Failure in building environments from UI, SDK, and CLI.
1750
+
* Failure in running jobs because Azure Machine Learning implicitly builds the environment in the first step.
1751
+
<!--/issueDescription-->
1752
+
1753
+
**Troubleshooting steps**
1754
+
* Ensure that you've spelled the package correctly and that the specified version exists
1755
+
* Ensure that your package version specifier is formatted correctly and that you're using valid comparison operators. See [Version specifiers](https://peps.python.org/pep-0440/#version-specifiers)
1756
+
* Replace the invalid operator with the operator recommended in the error message
1757
+
1758
+
### No matching distribution
1759
+
<!--issueDescription-->
1760
+
This issue can happen when there's no package found that matches the version you specified.
1761
+
1762
+
**Potential causes:**
1763
+
* You spelled the package name incorrectly
1764
+
* The package and version can't be found on the channels or feeds that you specified
1765
+
* The version you specified doesn't exist
1766
+
1767
+
**Affected areas (symptoms):**
1768
+
* Failure in building environments from UI, SDK, and CLI.
1769
+
* Failure in running jobs because Azure Machine Learning implicitly builds the environment in the first step.
1770
+
<!--/issueDescription-->
1771
+
1772
+
**Troubleshooting steps**
1773
+
* Ensure that you've spelled the package correctly and that it exists
1774
+
* Ensure that the version you specified for the package exists
1775
+
* Run `pip install --upgrade pip` and then run the original command again
1776
+
* Ensure the pip you're using can install packages for the desired Python version. See [Should I use pip or pip3?](https://stackoverflow.com/questions/61664673/should-i-use-pip-or-pip3)
* [What to do when apt-get fails](https://www.linux.com/news/what-do-when-apt-get-fails/#:~:text=Check%20the%20broken%20dependencies%E2%80%99%20availability.%20Run%20apt-get%20update,adding%20another%20source%2C%20then%20run%20apt-get%20install%20again)
1858
+
* [apt-get command in Linux with Examples](https://www.geeksforgeeks.org/apt-get-command-in-linux-with-examples/)
1859
+
1790
1860
## *Docker push issues*
1791
1861
### Failed to store Docker image
1792
1862
<!--issueDescription-->
@@ -1838,6 +1908,28 @@ This issue can happen when Docker doesn't recognize an instruction in the Docker
0 commit comments