@Nami Mottaghi Thanks for reaching out to us, there was page for the installed package, but it is not available now. However, you can also find the installed packages and their versions directly in the Azure ML Studio by following these steps:
- In ML Studio, go to the "Notebooks" tab.
- Create a new notebook or open an existing one.
- In a new cell, type
!pip freeze
and run the cell. This command will list all installed packages and their versions.
To install new packages, you can use the pip
command. Here is an example:
!pip install your-package-name==version-number
Replace "your-package-name" with the name of the package you want to install, and "version-number" with the version you want.
Remember, any packages you install this way will be available only in the current notebook session. If you need a package to be available across all notebooks and experiments, you need to create a Python script and upload it to the "Scripts" section of ML Studio. This script should contain the pip install
command for the required package.
For more advanced package management, you might want to consider using Azure ML environments. Environments allow you to define a collection of resources that Azure ML will use to run your training scripts. Resources include Python packages, environment variables, software settings, and others. You can find more information about Azure ML environments in the official documentation: https://docs.microsoft.com/en-us/azure/machine-learning/concept-environments Please let us know how it works and we can discuss further.
Regards,
Yutong
-Please kindly accept the answer if you feel helpful to support the community, thanks a lot.