Geoist安装详解

Windows下的安装步骤分享

Geoist中在设计过程中,为了提高程序包的性能,混合使用了Fortran和C语言,因此,在安装过程中会出现一些第三方依赖环境的兼容性问题。今天分享一下Geoist大家庭qq群(1107055243)的常金龙网友的安装经验。

  • 1.下载安装python-3.7.8-amd64.exe,安装至D:\Programs\Python\Python37下,设置Path路径增加到环境变量中;

  • 2.卸载Pip20(如果有),安装pip-19.2;
    卸载PIP20:python -m pip uninstall pip
    安装pip19:Python setup.py install

  • 3.在d:\programs\geoist\目录下编译geoist;
    Pip install numpy
    Pip install cython
    Pip install .

  • 4.根据提示在windows系统安装vc++(visualcppbuildtools_full.exe)、 gfortran(intel
    vfortran 或mingw-get-inst或g95-Mingw_201210.exe等哪个好用用哪个)编译器;

  • 5.安装Anaconda3-2020.02-Windows-x86_64.exe(with python3.7), 安装路径为D:\ProgramData\anaconda3,安装时不设置Path路径至环境变量,目的是不和之前安装的Python混淆

  • 6.安装成功后,从D:\Programs\Python\Python37\Lib\site-packages中拷贝编译过的模块geoist和geoist-0+unknown-py3.7.egg-info 目录到D:\ProgramData\Anaconda3\Lib\site-packages中,确保在anaconda base环境可正常使用geoist;

  • 7.打开anaconda base环境中的spyder3 调用Python3.7 调试python程序。

此步骤中用anaconda3调用geoist模块;另外可同时安装配置Pycharm中使用之前编译的geoist,第二个geoist运行环境;

图1 Spyder编辑环境界面
  • 8.也可以用PYCHARM和PYTHON3.7组合使用;安装pycharm-community-2019.1.3.exe,安装至D:\Program Files\JetBrains\PyCharm Community Edition 2019.1.3;

  • 9.设置pycharm python解释器为系统安装的Python3.7,确保可以调用步骤1-3安装编译的goist;
    具体步骤为:点击File –setting—选择如下:

图2 PyCharm社区版编辑环境和参数设置界面

你可能感兴趣的:(Geoist安装详解)