mirror of
https://github.com/RPCS3/rpcs3-www.git
synced 2024-11-23 10:09:47 +00:00
14 lines
194 B
Bash
14 lines
194 B
Bash
#!/bin/bash
|
|
|
|
# Python
|
|
apt-get install python
|
|
apt-get install python-dev
|
|
apt-get install python-pip
|
|
|
|
# Modules
|
|
pip install django
|
|
pip install markdown
|
|
|
|
# Initialize DB
|
|
python ../manage.py syncdb
|