-
Notifications
You must be signed in to change notification settings - Fork 1
How to install PyAnalySeries on Windows from scratch
Patrick Brockmann edited this page Oct 6, 2025
·
2 revisions
- Search “install Python” in your browser.
- Download the installer setup.
- Open it and follow the steps (allow full permissions).
- Search “install Anaconda” in your browser.
- Download the installer setup (choose free download and skip registration).
- Open it and follow the steps.
- Make sure to check the three boxes during installation.

-
Install Git with:
winget install --id Git.Git -e --source winget
-
Close and reopen PowerShell.
-
Clone PyAnalySeries:
git clone https://github.com/PaleoIPSL/PyAnalySeries
-
Create a Python environment:
conda env create --file environment.yml
If
condais not recognized, add it to PATH (see steps below). -
List environments:
conda env list
-
Activate environment:
conda activate env_PyAnalySeries
If you get
CondaError: Run 'conda init' before 'conda activate', run:conda init Set-ExecutionPolicy RemoteSigned
PyAnalySeries Then close and reopen PowerShell.
python PyAnalySeries.py
python PyAnalySeries.py test/ws_ex.xlsx
python PyAnalySeries.py test/MD95-2042.xlsx test/GeoB3938.xlsx
-
Find Conda Installation
-
Go to
C:\Users\YOUR_USERNAME\and look foranaconda3orminiconda3. -
Copy:
- Main folder path:
C:\Users\YOUR_USERNAME\anaconda3 - Scripts folder path:
C:\Users\YOUR_USERNAME\anaconda3\Scripts
- Main folder path:
-
-
Edit Environment Variables
- Press
Windows + R, typesysdm.cpl, press Enter. - Go to Advanced > Environment Variables.
- Edit the Path variable under System Variables.
- Add both copied paths.
- Press
-
Restart and Verify
-
Close and reopen PowerShell or CMD.
-
Check:
conda --version -
If you see a version number, Conda is working.
-