我的机器上安装了python 2。我想在我的代码的某些部分使用skbio模块。我尝试安装skbio(pip install scikit-bio),但它说它不支持python 2它只能在python 3中使用。我甚至尝试从我的代码中导入skbio,但它没有用。有什么方法可以为我的python 2版本安装和使用skbio模块吗?
提前致谢。
答案 0 :(得分:0)
scikit-bio在0.5.0版本中删除了Python 2支持,现在只与Python 3.4+兼容。版本0.4.2及更早版本兼容Python 2/3,因此您可以试用旧版本:
import { Injectable } from '@angular/core';
@Injectable()
export class Constants{
public Server: string = "http://localhost:5000/";
public ApiUrl: string = "api/Post/";
public ServerWithApi = this.Server + this.ApiUrl;
}