Re: [Schoolsplay-devel] Trouble with menu
Brought to you by:
chris_147,
stas_zytkiewicz
|
From: Stas Z. <st...@ch...> - 2024-05-19 13:04:37
|
On 19-05-2024 14:31, Néstor wrote: >> OK, cloned it. > > I think it's better to use only one repo, maybe I can push the > differences to your repo when they're ready and working? We could use > only your repo since then. Sure no problem. > >> You don't use a python virtual environment? > > I don't know what it means, I'll take a look. It boils down to: python3.10 -m venv .venv3.10 source .venv3.10/bin/activate python3.10 -m pip install pip --upgrade (and then install all the python packages you need as they will be install local in the .venv3.10/lib/site-packages....) python3.10 -m pip install SQLAlchemy Excellent way to keep all the python stuff separated When you installed all the dependencies you do: pip freeze > requirements.txt Then add the requirements.txt to git and everybody can recreate the proper environment. https://www.geeksforgeeks.org/how-to-create-requirements-txt-file-in-python/ > >> If so do you have a requirements file for it? >> Just so that I can quickly setup your new environment. |