Skip to content

kantale/arkalos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arkalos

An open science collaborative system

Create working envrironment

Create a virtual conda environment

anaconda3/bin/conda create --name arkalos django  

OR

~/anaconda3/bin/virtualenv arkalos_python 

Enter the environment with

source anaconda3/bin/activate arkalos

OR

source arkalos_python/bin/activate

Install prerequisites:

conda install -y simplejson 
pip install pybtex

OR

pip install simplejson
pip install pybtex
pip install Django==1.10.5

The current django version of Arkalos is:

$  python -m django --version
1.10.5

Create arkalos project:

django-admin startproject arkalos 

Create main app:

cd arkalos
python manage.py startapp app

Rebuild DB:

python manage.py migrate --run-syncdb