Unable to locate package clang+
时间: 2023-08-02 11:16:00 浏览: 129
《python3网络爬虫开发实战》学习笔记::selenium——xpath:Unable to locate element
5星 · 资源好评率100%
The correct package name for installing Clang on Ubuntu is `clang`. You can install it by running the following command in the terminal:
```
sudo apt-get update
sudo apt-get install clang
```
If you need a specific version of Clang, you can use the following command to install it:
```
sudo apt-get install clang-<version number>
```
For example, to install Clang 10, you can use the following command:
```
sudo apt-get install clang-10
```
I hope this helps! Let me know if you have any further questions.
阅读全文