我正在尝试使用anaconda发行版设置sublime文本3。
我的构建系统是:
class Point {
private float x;
private float y;
public Point(float x, float y){
this.x=x;
this.y=y;
}
public float getX(){return this.x;}
public float getY(){return this.y;}
public void setX(float x){this.x=x;}
public void setY(float y){this.y=y;}
@Override
public String toString(){
return ("x = "+this.x+", y = "+this.y+";");
}
@Override
public Point clone(){
return new Point(this.x,this.y);
}
@Override
public boolean equals(Object object){
if (object != null && object.getClass()==Point.class){
return object.getX()==this.x && object.getY()==this.y;
}
else{
return false;
}
}
我的路径还包含与Anaconda和Python 3.exe相同的目录
当我尝试使用Ctrl B进行构建时,出现以下错误消息:
{
"cmd": ["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\Anaconda3_64", "$file"],
"selector": "source.python"
}
为什么会这样?