Skip to content

Commit 16e98f2

Browse files
author
Hanzhang Zeng (Roger)
committed
Fix capitalization
1 parent 6ca378c commit 16e98f2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-functions/recover-module-not-found.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ Browse to `.python_packages/lib/python3.6/site-packages/<package-name>` or `.pyt
4343

4444
Using third-party or outdated tools during deployment may cause this issue.
4545

46-
See [Enable Remote Build](#enable-remote-build) or [Build Native Dependencies](#build-native-dependencies) for mitigation.
46+
See [Enable remote build](#enable-remote-build) or [Build native dependencies](#build-native-dependencies) for mitigation.
4747

4848
### The package isn't resolved with proper Linux wheel
4949

5050
Go to `.python_packages/lib/python3.6/site-packages/<package-name>-<version>-dist-info` or `.python_packages/lib/site-packages/<package-name>-<version>-dist-info`. Use your favorite text editor to open the **wheel** file and check the **Tag:** section. If the value of the tag doesn't contain **linux**, this could be the issue.
5151

5252
Python functions run only on Linux in Azure: Functions runtime v2.x runs on Debian Stretch and the v3.x runtime on Debian Buster. The artifact is expected to contain the correct Linux binaries. Using `--build local` flag in Core Tools, third-party, or outdated tools may cause older binaries to be used.
5353

54-
See [Enable Remote Build](#enable-remote-build) or [Build Native Dependencies](#build-native-dependencies) for mitigation.
54+
See [Enable remote build](#enable-remote-build) or [Build native dependencies](#build-native-dependencies) for mitigation.
5555

5656
### The package is incompatible with the Python interpreter version
5757

@@ -63,7 +63,7 @@ You can check the Python version of your function app from the [Azure portal](ht
6363

6464
After the explorer loads, search for **LinuxFxVersion**, which shows the Python version.
6565

66-
See [Update Your Package To The Latest Version](#update-your-package-to-the-latest-version) or [Replace the package with equivalents](#replace-the-package-with-equivalents) for mitigation.
66+
See [Update your package to the latest version](#update-your-package-to-the-latest-version) or [Replace the package with equivalents](#replace-the-package-with-equivalents) for mitigation.
6767

6868
### The package conflicts with other packages
6969

@@ -75,15 +75,15 @@ you must uninstall azure-storage first.</pre>
7575

7676
You can find the documentation for your package version in `https://pypi.org/project/<package-name>/<package-version>`.
7777

78-
See [Update Your Package To The Latest Version](#update-your-package-to-the-latest-version) or [Replace the package with equivalents](#replace-the-package-with-equivalents) for mitigation.
78+
See [Update your package to the latest version](#update-your-package-to-the-latest-version) or [Replace the package with equivalents](#replace-the-package-with-equivalents) for mitigation.
7979

8080
### The package only supports Windows or macOS platforms
8181

8282
Open the `requirements.txt` with a text editor and check the package in `https://pypi.org/project/<package-name>`. Some packages only run on Windows or macOS platforms. For example, pywin32 only runs on Windows.
8383

8484
The `Module Not Found` error may not occur when you're using Windows or macOS for local development. However, the package fails to import on Azure Functions, which uses Linux at runtime. This is likely to be caused by using `pip freeze` to export virtual environment into requirements.txt from your Windows or macOS machine during project initialization.
8585

86-
See [Replace the package with equivalents](#replace-the-package-with-equivalents) or [Handcraft Requirements.txt](#handcraft-requirementstxt) for mitigation.
86+
See [Replace the package with equivalents](#replace-the-package-with-equivalents) or [Handcraft requirements.txt](#handcraft-requirementstxt) for mitigation.
8787

8888
## Mitigate ModuleNotFoundError
8989

0 commit comments

Comments
 (0)