Database of Arithmetic Dynamics
This database collects arithmetic information on algebraic dynamical systems. The database in implemented in PSQL, while the computations are done in Python/SageMath. The code/functionality is written to be run under a SageMath kernel.
On an existing 20.02 ubunutu install with release sage built from sage github (https://github.com/sagemath/sage.git)
sudo apt update sudo apt upgrade sudo apt install postgresql
sudo systemctl start postgresql
sudo systemctl status postgresql
sudo su - postgres psql postgres=# CREATE USER [username] WITH PASSWORD '[password]'; postgres=# CREATE DATABASE [db name]; postgres=# GRANT ALL PRIVILEGES ON DATABASE [db name] to [user]; postgres=# \q
Get link from readme in: https://github.com/beekeeper-studio/beekeeper-studio
sudo dpkg -i [filename]
sudo apt-get install python3-dev sudo apt-get install libpq-dev
sage -pip install psycopg2
sage -pip install pysha3
https://github.com/bhutz/DAD.git
Click on "Fork" to create your personal fork of the project
this creates your own person DAD repository. e.g., https://github.com/alice/DAD.git
git clone git clone https://github.com/alice/Dynabase.git cd DAD git remote -v
git remote add upstream https://github.com/bhutz/Dynabase.git git remote -v
git remote set-url --push upstream DISABLE
git init
git remote add origin [email protected]:alice/Dynabase.git git remote add upstream [email protected]:bhutz/Dynabase.git git remote -v
git pull origin main
git branch --set-upstream-to=origin/main
sage: load_attach_path('[path]')