macOS安装pip 以及 安装项目依赖

打开终端,输入以下命令:

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

然后输入以下命令:

python3 get-pip.py

等待下载完毕即可

可以用下面的命令来安装依赖

pip install -r requirements.txt

 

你可能感兴趣的:(macos,pip)