bash: pip install jupyter notebook==6.4.12: command not found
时间: 2023-09-30 17:04:55 浏览: 165
回答: 当出现"bash: pip install jupyter notebook==6.4.12: command not found"的错误提示时,可能是因为pip命令没有正确安装或者没有添加到系统的环境变量中。你可以按照以下步骤来解决这个问题。
首先,确保你已经以root用户身份登录到系统中。然后,使用以下命令安装pip:
```
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
```
接下来,将pip添加到系统的环境变量中。你可以编辑root用户的.bash_profile文件,并在其中添加以下内容:
```
export PATH=$PATH:/usr/local/bin
```
保存并退出文件。然后,重新加载.bash_profile文件,使环境变量生效:
```
source ~/.bash_profile
```
现在,你应该能够使用pip命令了。尝试再次运行以下命令:
```
pip install jupyter notebook==6.4.12
```
这样应该就能够成功安装jupyter notebook了。如果还有其他问题,请告诉我。
#### 引用[.reference_title]
- *1* *2* *3* [Centos8 部署 Jupyter Notebook](https://blog.csdn.net/cg_i/article/details/127248297)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文