Something is wrong with the numpy installation. While importing we detected an older version of numpy in ['D:\\ana\\1\\envs\\yolo\\lib\\site-packages\\numpy']. One method of fixing this is to repeatedly uninstall numpy until none is found, then reinstall this version.
时间: 2023-07-17 22:01:13 浏览: 208
I understand that you are facing an issue with the numpy installation. To fix this issue, you can try the following steps:
1. Uninstall numpy: Run the following command in your terminal or command prompt:
```
pip uninstall numpy
```
2. Check if numpy is completely uninstalled: Run the following command:
```
pip show numpy
```
If it still shows any information about numpy, repeat step 1 until no information is found.
3. Install the required version of numpy: Run the following command to install a specific version of numpy:
```
pip install numpy==<version_number>
```
Replace `<version_number>` with the version you want to install.
By following these steps, you should be able to resolve the issue with the numpy installation. Let me know if you need further assistance!
阅读全文