如何在 Azure VM 上安装 Python 和 Python 包?
How to install Python and Python packages on Azure VM?
我正在玩 Windows Azure 虚拟机,我想通过远程 运行 和调试一些 Python 脚本。如何在其上安装 Python、IDE 和必要的软件包?我是否像在家用计算机上那样安装它?
这与您在本地计算机上安装软件包的方式相同。您可以从 here
阅读有关在 VM 上安装软件包的信息
大多数情况下,您会使用 pip 安装必要的库,
pip install azure-storage-blob==12.0.0
如果要在 Windows Azure VM 上安装 Python、IDE 和必要的包,您可以先 RDP to that Windows VM then install Python 或在本地下载 Python 包,然后上传到 Azure VM。根据您的 OS.
,您将下载 Windows 的 Python 版本
通常,Azure VM 作为您的本地计算机,您也可以在工作负载页面上安装 Visual Studio、Select Python 开发 ,然后单击 安装 。
我正在玩 Windows Azure 虚拟机,我想通过远程 运行 和调试一些 Python 脚本。如何在其上安装 Python、IDE 和必要的软件包?我是否像在家用计算机上那样安装它?
这与您在本地计算机上安装软件包的方式相同。您可以从 here
阅读有关在 VM 上安装软件包的信息大多数情况下,您会使用 pip 安装必要的库,
pip install azure-storage-blob==12.0.0
如果要在 Windows Azure VM 上安装 Python、IDE 和必要的包,您可以先 RDP to that Windows VM then install Python 或在本地下载 Python 包,然后上传到 Azure VM。根据您的 OS.
,您将下载 Windows 的 Python 版本通常,Azure VM 作为您的本地计算机,您也可以在工作负载页面上安装 Visual Studio、Select Python 开发 ,然后单击 安装 。