-
Notifications
You must be signed in to change notification settings - Fork 1
IPython Notebook
HOA PHAN edited this page Jun 10, 2023
·
1 revision
Print all installed PKG (eg inside Jupiter Notebook)
import pkg_resources
installed_packages = [pkg.key for pkg in pkg_resources.working_set]
for package in installed_packages:
print(package)
!python -m venv myenv
!source myenv/bin/activate
!pip install sagemaker-studio-image-build