conda create -n yolo python=3.8 -bash: $: command not found
时间: 2024-05-07 15:15:12 浏览: 83
Miniconda3-py38_4.10.3-Linux-x86_64.zip
This error message suggests that the command was not recognized by the shell, most likely because the "$" symbol was included in the command. Try removing the "$" symbol at the beginning of the command and running it again:
```conda create -n yolo python=3.8```
This should create a new conda environment called "yolo" with Python version 3.8.
阅读全文