-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create Windows_Installation_Instructions.md
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Installing Miniconda | ||
|
||
You need to have Miniconda installed on your system. Follow the instructions below based on your operating system. | ||
|
||
1. Download the Miniconda installer for Windows from the [official Miniconda page](https://docs.conda.io/en/latest/miniconda.html). | ||
2. Run the installer and follow the on-screen instructions. | ||
3. After installation, use the Anaconda Prompt for the following commands. | ||
|
||
## Installing Git: | ||
|
||
Install git by typing: | ||
|
||
``` | ||
conda install git | ||
``` | ||
|
||
## Clone the repository | ||
|
||
Clone this repository by doing: | ||
|
||
``` | ||
git clone https://github.com/penn-cnt/ieeg-recon.git | ||
``` | ||
|
||
## Install the GUI: | ||
|
||
After cloning, install the GUI by running: | ||
|
||
``` | ||
bash ieeg-recon/python/install_ieeg-recon_gui_linux.sh | ||
``` | ||
|
||
## Install VoxTool | ||
|
||
Due to differences in package dependencies, the Windows version of iEEG-recon requires a step-by-step installation of VoxTool. It can easily be done by following the instructions [here](https://github.com/penn-cnt/ieeg-recon/blob/main/python/docs/Manual_Voxtool_Installation.md) | ||
|
||
## Running iEEG-recon | ||
|
||
After all the steps above are completed, activate the `ieeg_recon` environment: | ||
|
||
``` | ||
conda activate ieeg_recon | ||
``` | ||
|
||
Then run the GUI by typing: | ||
|
||
|
||
``` | ||
python ieeg-recon/python/ieeg_recon_gui_docker.py | ||
``` |