我是编程新手,我正在学习python。我必须安装pygame和pip以继续我正在研究的书,但我似乎无法找到一个简单的方法来做到这一点。我试图升级pip,但我不确切知道如何做到这一点。我已经尝试使用提示器,但它说它无法将其识别为内部或外部命令。我最近下载了python 3.6.5版本,我仍然安装了python 3.5版本。有一个简单的方法吗?
编辑:已经尝试过这样做:'pip' is not recognized as an internal or external command
和这一个:How do I update pip itself from inside my virtual environment?
但是不能理解那么多。
答案 0 :(得分:0)
答案 1 :(得分:0)
您不必安装pip,因为它是默认安装的。
如果您使用的是Windows,请在命令行中输入var request = require('request');
var options = {
url: "https://httpbin.org/ip",
method: "get"
};
console.log('Requesting IP..');
request(options, function (error, response, body) {
if (error) {
console.error('error:', error);
} else {
console.log('Response: Headers:', response && response.headers);
}
});
。这将专门为Python 3.6版安装pygame。
在其他操作系统中,您可以输入py -3.6 -m pip install pygame
或pip3 install pygame
。 OS X用户经常遇到安装问题,但我对此无能为力。
查看pygame的getting started页面。
这个特例的问题是" Scripts"没有安装包含pip的目录。用户可以通过再次运行Python安装程序并选择" modify"来修复它。
之后您还可以通过python3 -m pip install pygame
或Windows python -m pip install --upgrade pip
这种方式升级点数。