Skip to content

Commit

Permalink
Update installation.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
bimac committed Aug 23, 2023
1 parent 960f408 commit 5189e3d
Showing 1 changed file with 29 additions and 27 deletions.
56 changes: 29 additions & 27 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,49 +40,51 @@ Then exit the admin window and open a new Windows Powershell prompt (no admin mo
Install iblrigv8
----------------

From the Powershell command line, clone iblrig to the ‘iblrigv8’ directory, and switch to iblrigv8 branch
1. From the Powershell command line, clone iblrig to the ‘iblrigv8’ directory, and switch to iblrigv8 branch

.. code-block:: powershell
.. code-block:: powershell
cd C:\
git clone https://github.com/int-brain-lab/iblrig.git iblrigv8
cd iblrigv8
git checkout iblrigv8
cd C:\
git clone https://github.com/int-brain-lab/iblrig.git iblrigv8
cd iblrigv8
git checkout iblrigv8
Install a new virtual environment and update pip (modify the <Username> value if needed)
2. Install a new virtual environment and update pip (modify the <Username> value if needed)

.. code-block:: powershell
.. code-block:: powershell
C:\Users\IBLuser\AppData\Local\Programs\Python\Python310\.\python.exe -m venv C:\iblrigv8\venv
C:\iblrigv8\venv\scripts\python.exe -m pip install --upgrade pip wheel
C:\Users\IBLuser\AppData\Local\Programs\Python\Python310\.\python.exe -m venv C:\iblrigv8\venv
C:\iblrigv8\venv\scripts\python.exe -m pip install --upgrade pip wheel
Install iblrig in editable mode
3. Install iblrig in editable mode

.. code-block:: powershell
.. code-block:: powershell
C:\iblrigv8\venv\scripts\Activate.ps1
cd C:\iblrigv8
pip install -e .
pip install -r requirements.txt
C:\iblrigv8\venv\scripts\Activate.ps1
cd C:\iblrigv8
pip install -e .
pip install -r requirements.txt
Install Bonsai in portable mode
4. Install additional tasks and extractors

.. code-block:: powershell
.. code-block:: powershell
cd C:\iblrigv8\Bonsai
powershell.exe .\install.ps1
cd ..
cd C:\
git clone https://github.com/int-brain-lab/project_extraction.git
cd project_extraction
pip install -e .
Install additional personal project tasks and extractors
.. code-block:: powershell
5. Install Bonsai in portable mode

.. code-block:: powershell
cd C:\
git clone https://github.com/int-brain-lab/project_extraction.git
cd project_extraction
pip install -e .
cd C:\iblrigv8\Bonsai
powershell.exe .\install.ps1
cd ..
Expand Down

0 comments on commit 5189e3d

Please sign in to comment.