# Frequently Asked Questions [![View Source On Gitee](https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/website-images/r2.7.1/resource/_static/logo_source_en.svg)](https://gitee.com/mindspore/docs/blob/r2.7.1/docs/vllm_mindspore/docs/source_en/faqs/faqs.md) ## Model-related Issues ### Git-LFS Installation 1. Obtain the corresponding [git-lfs installation package](https://github.com/git-lfs/git-lfs/releases/tag/v3.0.1) from the following link. 2. Download and install: ```shell mkdir git-lfs cd git-lfs wget https://github.com/git-lfs/git-lfs/releases/download/v3.0.1/git-lfs-linux-arm64-v3.0.1.tar.gz --no-check-certificate tar zxvf git-lfs-linux-arm64-v3.0.1.tar.gz bash install.sh ``` 3. Verify successful installation: ```shell git lfs install ``` If `Git LFS initialized.` is returned, the installation was successful. ## Deployment-related Issues ### `aclnnNonzeroV2` Related Error When Starting Online Inference - Key error message: ```text RuntimeError: Call aclnnNonzeroV2 failed, detail:E39999: Inner Error ``` Check whether the CANN and MindSpore versions are correctly matched. ### `torch` Not Found When Importing `vllm_mindspore` - Key error message: ```text importlib.metadata.PackageNotFoundError: No package metadata was found for torch ``` Execute the following commands to uninstall torch-related components: ```bash pip uninstall torch pip uninstall torchvision ```