You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I recently tried to follow the instructions on the dev docs to set up the environment to build docs locally, I ran into some problems. @benjeffery helped me get setup locally, but this needs to be applied to the requirements.yml (and requirements.txt?).
In order to setup locally (Apple M2, Sonoma 14.1.2), we:
Create a new env from python/development/requirements.txt
mamba create -n tskit_dev python=3.12
mamba activate tskit_dev
pip install -r python/requirements/development.txt
pip uninstall tskit msprime # This is because pip didn't install tskit and msprime corectly with wheeles
mamba install tskit msprime
pip install pandas
# Need to make tskit locally to use the local version
cd python; make clean; make
The text was updated successfully, but these errors were encountered:
This issue would seem to suggest not using anything in the conda/mamba world? Unless you 100% need some other tool only available that way, a regular venv will be much more reliable.
When I recently tried to follow the instructions on the dev docs to set up the environment to build docs locally, I ran into some problems. @benjeffery helped me get setup locally, but this needs to be applied to the requirements.yml (and requirements.txt?).
In order to setup locally (Apple M2, Sonoma 14.1.2), we:
Create a new env from
python/development/requirements.txt
The text was updated successfully, but these errors were encountered: