如何在2017年为IronPython安装NumPy?

时间:2017-06-22 23:29:22

标签: python .net numpy ironpython python.net

我找到了这个问题的旧答案,但上述帖子中提供的说明已不再有效......基本上,存储NumPy for IronPython的URL已损坏。

How to install NumPy for IronPython in 2015/2016

1 个答案:

答案 0 :(得分:0)

您可以从 https://pypi.org/project/numpy 下载所需的车轮文件。

根据您的操作系统将 pip 更新到最新版本。

如果您无法使用 pip,请通过编辑将 pip 添加到您的 PATH 中 环境变量。

public class PageViewModel : BaseViewModel
{
    public ObservableCollection<CategoryDTO> Categories { get; }

    public string FrameColor { get; set; } = "#3d3d3d";

    public PageViewModel()
    {
        Categories = new ObservableCollection<CategoryDTO>();

        LoadCategoriesCommand = new Command(async () => await ExecuteLoadCategoriesCommand(), () => false);
        CategoryTapped = new Command<CategoryDTO>(async (categoryId) => await OnCategoryTapped(categoryId));
    }

    public Command LoadCategoriesCommand { get; }
    public Command<CategoryDTO> CategoryTapped { get; }

    private async Task OnCategoryTapped(CategoryDTO categoryDTO)
    {
        IsBusy = true;

        try
        {
            await ExecuteSomethingCommand(id);
        }
        catch (Exception ex)
        {
            Debug.WriteLine(ex);
        }
        finally
        {
            IsBusy = false;
        }
    }
}

升级pip后,您可以使用pip安装您下载的本地*.whl文件

pip install --upgrade pip

有关更多自定义安装,您可以查看此处:https://pip.pypa.io/en/stable/