我想安装最新版本的yoyo-migrations模块。
根据https://pypi.org/project/yoyo-migrations/,最新版本是5.1.0,当我尝试使用pip install yoyo-migrations
进行安装时,它会安装v5.0.5,当使用此命令pip install yoyo-migrations==5.1.0
时,它会给我这个错误。
收集yoyo-migrations == 5.1.0无法找到该版本 满足要求yoyo-migrations == 5.1.0(来自版本:1,2, 3,4,4.1.0,4.1.1,4.1.2,4.1.3,4.1.4,4.1.5,4.1.6,4.2.0,4.2.1, 4.2.2,4.2.3,4.2.4,4.2.5,5.0.0,5.0.1,5.0.2,5.0.3,5.0.4,5.0.5)没有为yoyo-migrations找到匹配的分布== 5.1.0
答案 0 :(得分:0)
如果您查看该版本here的文件,您会看到该版本唯一可用的文件是
yoyo_migrations-5.1.0-py2-none-any.whl(42.1 kB)
py2
部分表示此轮仅适用于python2,而不适用于您的python3版本,因此当pip
告诉您无法找到合适的版本时,Ext.define(‘MyButton’, (function(){
function privateStaticMethod() {
console.log(‘static method’);
}
function privateMethod(me) {
console.log(me.getText());
};
function privateMethod2() {
console.log(this.getText());
}
return {
extends: ‘Ext.button.Button’,
text: 'Click me',
// will be called when the button was clicked
handler: function() {
privateStaticMethod();
privateMethod(this);
privateMethod2.apply(this);
}
};
})()
);
是正确的。但是,您尝试下载的版本只有几个小时的时间,也许很快就会有其他文件。
答案 1 :(得分:0)
或者您可以安装开发版本。
pip install -e hg+https://bitbucket.org/ollyc/yoyo#egg=yoyo-migrations