You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: INSTALL.md
+32-10Lines changed: 32 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
Dependencies
2
2
------------
3
3
4
-
Qiita is a python package, with support for python 2.7 and 3.2, that depends on the following python libraries (all of them can be installed using pip):
4
+
Qiita is a python package, with support for python 2.7, that depends on the following python libraries (all of them can be installed using pip):
Once you have [PostgresSQL](http://www.postgresql.org/download/) and [redis](https://pypi.python.org/pypi/redis/) installed (follow the instruction on their web site), simply run these commands to install qiita and configure the demo environment, replacing $QIITA_DIR for the path where qiita is installed
39
-
(note that if you are not using Ubuntu you might need to follow the instructions in the next section):
36
+
(note that if you are not using Ubuntu you might need to follow the instructions in the next section).
After these commands are executed, you will need (1) download a [sample Qiita configuration file](https://raw.githubusercontent.com/biocore/qiita/a0628e54aef85b1a064d40d57ca981aaf082a120/qiita_core/support_files/config_test.txt), (2) set the `QIITA_CONFIG_FP` environment variable and (3) proceed to initialize your environment:
qiita_env make --no-load-ontologies --add-demo-user
46
55
```
56
+
57
+
Finally you need to start the server:
58
+
59
+
```bash
60
+
# IPython takes a while to get initialized so wait 30 seconds
61
+
qiita_env start_cluster demo test reserved && sleep 30
62
+
qiita webserver start
63
+
64
+
```
65
+
66
+
If all the above commands executed correctly, you should be able to go to http://localhost:8888 in your browser, to login use `demo@microbio.me` and `password` as the credentials.
67
+
68
+
47
69
## If using other operating systems that are not Ubuntu
48
70
49
71
You will need to add the postgres user to the database. In order to do this, run:
0 commit comments