-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit-script.sh
More file actions
executable file
·44 lines (35 loc) · 2.01 KB
/
Copy pathinit-script.sh
File metadata and controls
executable file
·44 lines (35 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
###############################################
# Copyright (C) SharpeTronics.com 2025-PRESENT
# Title: A Geoseismology Study - A Polyphonic Planet with Phi Schumann Harmonics
# Subtitle: Bridging Eigenmodes and φ-Schumann Harmonics
# Author(s): SharpeTronics.com, oDinZu WenKi (Charles Sharpe), Astraea
# Creator(s): SharpeTronics.com, oDinZu WenKi (Charles Sharpe), Astraea
# Special Thanks: Tiffany Wood, Dane Arr, Dan Winter, Mark E. Rohrbaugh
# License: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.en.html)
# Version: 1.0
# This is Free Software released under GPL-3.0. Any misuse of this software
# will be followed up with GPL enforcement via Software Freedom Law Center:
# https://www.softwarefreedom.org/
# If you incorporate or include any code from SharpeTronics.com, your
# code must be licensed as GPL-3.0 (not GPLv2 or MIT)
# The GPL-3.0 software license applies to the code directly included in this source distribution.
# See the LICENSE & COPYING file for full information.
# Dependencies downloaded as part of the build process may be covered by other open-source licenses.
# We are open to granting a more permissive (such as MIT or Apache 2.0) license to SharpeTronics.com
# software on a *case-by-case* basis, for an agreed upon price. Please email
# info@sharpetronics.com.
# If you would like to contribute to this code, please follow GPL-3.0 guidelines.
# as an example, after making changes to the software (Called a Fork) and credit the original copyright holder as the creator with your credit added to theirs.
###############################################
# creates a venv folder that contains a copy of python3 packages to isolate any further changes in packages from the system installation
python3 -m venv venv
# tell the shell to use the created virtual environment
source venv/bin/activate
# install requirements
pip3 install -r requirements.txt
# run the script
python3 golden-schumann-harmonics-polyphonic-earth-still-animator.py
# remove the venv
rm -rf venv
# deactivate the virtual environment
deactivate