From dac85fe59dbc26437dfed8a3d69d39aa247043d2 Mon Sep 17 00:00:00 2001 From: kirsle Date: Thu, 11 Sep 2014 22:46:48 -0700 Subject: [PATCH] Created Installing the Software (markdown) --- Installing-the-Software.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Installing-the-Software.md diff --git a/Installing-the-Software.md b/Installing-the-Software.md new file mode 100644 index 0000000..1241cc7 --- /dev/null +++ b/Installing-the-Software.md @@ -0,0 +1,22 @@ +Rophako should run equally well in Python versions 2 and 3, but it's only been deployed in a Python 2 environment. + +It's recommended that you set up a virtualenv to set up Rophako. + +```bash +$ mkvirtualenv rophako +(rophako)$ git clone https://github.com/kirsle/rophako +(rophako)$ cd rophako/ +(rophako)$ pip install -r requirements.txt +``` + +You may need some system libraries installed for some of the Python dependencies to compile correctly. + +Fedora: + +```bash +$ sudo yum install libffi-devel libjpeg-devel libpng-devel +``` + +If all went well, you should be able to run `python runserver.py` without any errors. + +**Next Step:** [[Server Configuration]] \ No newline at end of file