Skip to content

Latest commit

 

History

History
68 lines (43 loc) · 1.13 KB

File metadata and controls

68 lines (43 loc) · 1.13 KB

Updating the source code

Standard update

git pull

When git pull fails

If you see an error such as:

  • "Your local changes would be overwritten"
  • "Please commit or stash your changes"

this means that some files were modified locally.


Reset local changes

If you do not need your local modifications, run:

git fetch
git reset --hard origin/main

Then update again:

git pull

Alternative (reinstall)

cd ..
rm -rf PyAnalySeries
git clone https://github.com/PaleoIPSL/PyAnalySeries.git
cd PyAnalySeries

Important

If you previously used an older environment, it is recommended to recreate it:

conda deactivate
conda remove --name env_PyAnalySeries --all
conda env create -f environment_PyQt6.yml

User data location

User data (projects, input files, results, exports, etc.) should not be stored inside the installation directory.

Updating or reinstalling the application may overwrite or delete files located in the repository folder.

It is recommended to keep your data in a separate directory outside of PyAnalySeries.