mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 14:23:07 +02:00
feat: hello world lab6
This commit is contained in:
parent
ba1173e3a1
commit
99ab0106b7
1
.gitignore
vendored
1
.gitignore
vendored
@ -314,3 +314,4 @@ slides
|
|||||||
.slides
|
.slides
|
||||||
./.slides
|
./.slides
|
||||||
BSS-Algorytmy_Szyfrowania
|
BSS-Algorytmy_Szyfrowania
|
||||||
|
venv
|
||||||
1
Programming/TRAK/.python-version
Normal file
1
Programming/TRAK/.python-version
Normal file
@ -0,0 +1 @@
|
|||||||
|
3.11
|
||||||
5
Programming/TRAK/init.sh
Executable file
5
Programming/TRAK/init.sh
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
pyenv local 3.11
|
||||||
|
python -m venv ./venv
|
||||||
|
source ./venv/bin/activate
|
||||||
4
Programming/TRAK/lab6.py
Normal file
4
Programming/TRAK/lab6.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
import bpy
|
||||||
|
import os
|
||||||
|
script_path = '' # path to script
|
||||||
|
exec(compile(open(script_path).read(), script_path, 'exec'))
|
||||||
1
Programming/TRAK/requirements.txt
Normal file
1
Programming/TRAK/requirements.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
bpy
|
||||||
Loading…
Reference in New Issue
Block a user