RuntimeError:找不到Freetype库,Glumpy Python 3.6 w10

时间:2019-02-22 23:19:14

标签: python runtime-error freetype glumpy

我的问题与此完全相同:Freetype library not found with Glumpy Python 3.6 Win 10

有人在下面回答,但我不知道该怎么做,有人可以更好地解释吗? 我找到了他在评论中提到的文件,但我不知道该写什么并设置路径。

我已经做过package com.sserrano.stormy; import android.app.Activity; import android.location.Location; import android.os.CountDownTimer; import android.support.annotation.NonNull; import android.util.Log; import com.google.android.gms.location.FusedLocationProviderClient; import com.google.android.gms.location.LocationServices; import com.google.android.gms.tasks.OnFailureListener; import com.google.android.gms.tasks.OnSuccessListener; public class UserLocationManager { public static final String TAG = UserLocationManager.class.getSimpleName(); private FusedLocationProviderClient locationClient; private Activity instActivity; private double[] coords = {37.8267, -122.4233}, defaultCoords = {37.8267, -122.4233}; private volatile boolean gotResponse = false; UserLocationManager(Activity instActivity){ this.instActivity = instActivity; locationClient = LocationServices.getFusedLocationProviderClient(instActivity); } public double[] getLastCoords() { try { locationClient.getLastLocation(). addOnSuccessListener(instActivity, new OnSuccessListener<Location>() { @Override public void onSuccess(Location location) { if(location != null) { coords = new double[] {location.getLatitude(), location.getLongitude()}; } gotResponse = true; } }).addOnFailureListener(instActivity, new OnFailureListener() { @Override public void onFailure(@NonNull Exception e) { gotResponse = true; } }); } catch (SecurityException e){ return defaultCoords; } waitForLocation(); return coords; } public double[] getDefaultCoords(){ return defaultCoords; } private void waitForLocation(){ new CountDownTimer(5000, 5000){ @Override public void onFinish() { gotResponse = true; Log.w(TAG, "Timed out waiting the result of the location request."); } @Override public void onTick(long millisUntilFinished) { } }; try{ while(!gotResponse) { Thread.sleep(Constants.getSleepIntervalDuration()); } } catch (InterruptedException e) { Log.w(TAG, "Interrupted while waiting the result of the location request." + " The app will likely act like if the location was not received, " + "even if it was."); } gotResponse = false; } } ,目前正在使用(2.0.0.post6)版本,但仍然出现错误。

1 个答案:

答案 0 :(得分:0)

您只需要将FreeType软件包复制到glumpy的ext软件包中即可。