22
33## Requirements
44
5- - Python 3.11
5+ - Python 3.11 (later versions may not work)
66- Git CLI installed
77- Python, pip and git are all available as command-line commands (add to the path if needed)
88
@@ -26,6 +26,7 @@ Activate the virtual environment
2626
2727```
2828For cmd.exe: PyfaEnv\scripts\activate.bat
29+ For PowerShell: PyfaEnv\Scripts\Activate.ps1
2930For bash: source <venv>/Scripts/activate
3031```
3132> For other OS check [ Python documentation] ( https://docs.python.org/3/library/venv.html )
@@ -36,15 +37,17 @@ pip install -r PyfaDEV\requirements.txt
3637```
3738> For some Linux distributions, you may need to install separate wxPython bindings, such as ` python-matplotlib-wx `
3839
40+ > You may need to [ install a C compiler] ( https://mesonbuild.com/SimpleStart.html#installing-a-compiler-toolchain )
41+
3942Check that the libs from * requirements.txt* are installed
4043```
4144pip list
4245```
4346
4447Build translations and database:
4548```
46- python scripts\compile_lang.py
47- python db_update.py
49+ python PyfaDEV\ scripts\compile_lang.py
50+ python PyfaDEV\ db_update.py
4851```
4952
5053Test that the project is starting properly
@@ -88,6 +91,7 @@ Check that the project is starting properly.
8891Switch to the proper virtual environment
8992```
9093For cmd.exe: PyfaEnv\scripts\activate.bat
94+ For PowerShell: PyfaEnv\Scripts\Activate.ps1
9195For bash: source <venv>/Scripts/activate
9296```
9397
0 commit comments