Octave的符号包(版本2.8.0)在Windows 10中不起作用

我已遵循此处给出的说明的选项1和2

https://github.com/cbm755/octsympy/wiki/Notes-on-Windows-installation

尽管如此,在加载符号包之后,我得到了

<MapView
  initialRegion={{
    latitude: 30.703792,longitude: 76.655449,latitudeDelta: 0.20,longitudeDelta: 0.20,}}
  style={styles.map}>
   {this.state.markers.map((marker,index) => (
     <Marker 
          key ={index}
          coordinate={marker.coordinates}
          title={marker.title}>                 
     </Marker>
   ))}
</MapView>

这是>> pkg load symbolic >> syms x error: 'python_ipc_popen2' undefined near line 59 column 17 error: called from python_ipc_driver at line 59 column 15 python_cmd at line 163 column 11 valid_sym_assumptions at line 38 column 10 assumptions at line 82 column 7 syms at line 97 column 13

的输出
sympref diagnose

我安装了Anaconda 3。我正在Windows 10下工作。有关如何解决此问题的任何想法?

hang116026 回答:Octave的符号包(版本2.8.0)在Windows 10中不起作用

u应该执行setenv PYTHON full_path_to_python.exe

在我的情况下是setenv PYTHON C:\ Users \ username \ anaconda3 \ python

本文链接:https://www.f2er.com/3066605.html

大家都在问