[root@localhost HIDS]# pip3 install --user WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3 install --user` instead. You must give at least one requirement to install (see "pip help install")
时间: 2024-01-06 14:04:35 浏览: 245
linux安装pip pip3
5星 · 资源好评率100%
这个命令提示你不应该使用root权限来安装Python包,应该使用--user选项来安装到用户目录下。另外,你需要指定要安装的包名和版本号,例如:
```
pip3 install --user numpy==1.19.3
```
这将安装numpy 1.19.3版本到你的用户目录下。如果你不知道要安装哪些包,可以查看项目的requirements.txt文件,其中列出了项目依赖的所有包及其版本。你可以使用以下命令来安装这些包:
```
pip3 install --user -r requirements.txt
```
阅读全文