-
Notifications
You must be signed in to change notification settings - Fork 22
Home
Welcome to the fort-pymdwizard wiki!
Instructions for installing pymdwizard from source (on Windows). These are intended for someone with at least a basic familiarity with Python, Python installations, and perhaps GIT.
-
Install Anaconda or Miniconda (https://www.continuum.io/downloads or https://conda.io/miniconda.html). While the code is 2-3 compatible I would recommend installing the Python 3 version (64x), as 2.7 is being phased out.
-
Open the Anaconda command window
-
Add the conda-forge channel:cd conda config --add channels conda-forge
-
Create a pymdwizard environment: conda create --name pymdwizard python=3.5 pyqt=5.6.0
-
Activate this environment: activate pymdwizard
-
Install git: conda install git
-
CD to the directory you want to install the actual wizard in: cd c:\projects
-
clone our pymdwizard project: git clone https://github.com/talbertc-usgs/fort-pymdwizard.git
-
CD into our project folder: cd fort-pymdwizard
-
Install the rest of our requirements: conda install --yes --file requirements.txt
-
(there might be a more elegant way to accomplish this)
-
Launch the Wizard: python pymdwizard\gui\MainWindow.py