Python 3.4 has pip support built-in, so you can also use:python3.4 -m pip install如果您正在运行Ubuntu(或者也可能是Debian),则需要单独安装系统pip3:If you're running Ubuntu (or probably Debian as well), you'll need to install the system pip3 separately:sudo apt-get install python3-pip这将安装pip3可执行文件,因此您可以使用它以及前面提到的python3.4 -m pip:This will install the pip3 executable, so you can use it, as well as the earlier mentioned python3.4 -m pip:pip3 install requests 这篇关于如何在Python 3.4(而不是2.7)中安装请求模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-05 19:32