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
@@ -84,13 +84,13 @@ This approach mounts a directory that you provide into the image. The Python pac
84
84
To extend your prebuilt docker container image through pre-installed Python packages, follow these steps:
85
85
86
86
> [!IMPORTANT]
87
-
> You must use packages compatible with Python 3.7. All current images are pinned to Python 3.7.
87
+
> You must use packages compatible with Python 3.8 or 3.8, depending on the image you use.
88
88
89
89
1. Create a virtual environment using [virtualenv](https://virtualenv.pypa.io/).
90
90
91
91
1. Install your Dependencies. If you have a list of dependencies in a `requirements.txt`, for example, you can use that to install with `pip install -r requirements.txt` or just `pip install` individual dependencies.
92
92
93
-
1. When you specify the `AZUREML_EXTRA_PYTHON_LIB_PATH` environment variable, make sure that you point to the correct site packages directory, which will vary depending on your environment name and Python version. The following code demonstrates setting the path for a virtual environment named `myenv` and Python 3.7:
93
+
1. When you specify the `AZUREML_EXTRA_PYTHON_LIB_PATH` environment variable, make sure that you point to the correct site packages directory, which will vary depending on your environment name and Python version. The following code demonstrates setting the path for a virtual environment named `myenv` and Python 3.8:
94
94
95
95
96
96
```python
@@ -103,7 +103,7 @@ To extend your prebuilt docker container image through pre-installed Python pack
0 commit comments