在 Windows/Linux 子系统/ubuntu/windows power shell/bash 中:
pip3 install --upgrade pip
可以,但是:
WARNING: The scripts pip, pip3 and pip3.8 are installed in '/home/chills/.local/bin' which is not on PATH.
如何将其放在路径上?
尝试过:
~/.profile
得到:.profile: Permission denied
尝试vim ~/.bash_profile
打开我输入的文档PATH="$HOME/chills/.local/bin:$PATH"
但不知道如何退出,只能关闭 Windows Power Shell..问题仍然存在。
答案1
尝试过:
~/.profile
得到:.profile: Permission denied
显示错误消息是因为您尝试将文件作为程序运行,但实际上它不是程序。您应该通过文本编辑器打开它,而不是直接运行它。
尝试
vim ~/.bash_profile
打开我输入的文档,PATH="$HOME/chills/.local/bin:$PATH"
但不知道如何退出,只能关闭 Windows Power Shell。问题仍然存在
关闭窗口将退出编辑器,但不会保存该文件。
在 Vim 中,按 Esc 退出“插入模式”,然后输入:wq
以保存并退出。
尝试nano
(Ctrl-X) 或micro
(Ctrl-Q) 使用更熟悉的文本编辑器。