start project
This commit is contained in:
commit
6f508aa8c7
7 changed files with 17 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
.venv/
|
||||||
8
README.md
Normal file
8
README.md
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
# Usage
|
||||||
|
```bash
|
||||||
|
```
|
||||||
|
- lancer le code
|
||||||
|
```bash
|
||||||
|
chmod +x run.sh
|
||||||
|
./run.sh
|
||||||
|
```
|
||||||
0
population_generation.py
Normal file
0
population_generation.py
Normal file
0
requirements.txt
Normal file
0
requirements.txt
Normal file
0
run.py
Normal file
0
run.py
Normal file
4
run_linux.sh
Normal file
4
run_linux.sh
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
python -m venv .venv
|
||||||
|
source .venv/bin/activate
|
||||||
|
pip install -r requirements.txt
|
||||||
|
python run.py
|
||||||
4
run_windows.sh
Normal file
4
run_windows.sh
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
python -m venv .venv
|
||||||
|
source .venv\Scripts\activate
|
||||||
|
pip install -r requirements.txt
|
||||||
|
python run.py
|
||||||
Loading…
Add table
Add a link
Reference in a new issue