-
Notifications
You must be signed in to change notification settings - Fork 2
Installing Oppia (Linux)
Note: If you just want to create and share explorations, you may be able to use the hosted server at https://www.oppia.org (in which case you don't need to install anything).
These installation instructions were last tested on 22 Feb 2016. For more information on issues that may occasionally arise with the installation process, please see the Troubleshooting page.
-
Create a new, empty folder called
opensource/in your computer's home folder. -
Navigate to it (
cd opensource), then fork and clone (why?) the Oppia repo so that it gets downloaded intoopensource/oppia. -
Navigate to this folder (
cd oppia) and rungit remote add upstream https://github.com/oppia/oppia.git(or, if you're using SSH, usegit@github.com:oppia/oppia.git) to add anupstreamremote that's linked to Oppia's main repository. (This will be necessary when submitting PRs later.)
*The following instructions will install Oppia on your local machine.
Oppia relies on a number of programs and third-party libraries. Many of these libraries are downloaded automatically for you when you run the start.sh script provided with Oppia. However, there are some things that you will need to do beforehand:
-
Ensure that you have Python 2.7 installed.
-
Make sure you have curl (used to download third-party libraries), setuptools (needed for installing coverage, which checks test coverage for the Python code), git (which allows you to store the source in version control), python-dev (which is used for the numpy installation), python-pip (which is also used for the numpy installation) and pyyaml (which is used to parse YAML files):
sudo apt-get install curl python-setuptools git python-dev python-pip python-yaml
Alternatively, if you are on Debian/Ubuntu, you can use the install_prerequisites.sh script to install these. From the oppia directory:
bash scripts/install_prerequisites.sh
- In a terminal, navigate to
oppia/and run:
python -m scripts.start
The first time you run this script, it will take a while (about 5 - 10 minutes when we last tested it in Feb 2014, though this depends on your Internet connection). Subsequent runs should be much faster. The start.sh script downloads and installs the required dependencies (such as Google App Engine) if they are not already present, and sets up a development server for you to play with. The development server logs are then output to this terminal, so you will not be able to enter further commands in it until you disconnect the server.
Note: The script will create two folders that are siblings of the oppia/ root directory: oppia_tools and node_modules. This is done so that these two folders will not be uploaded to App Engine when the application is deployed to the web.
Note: Please don't use sudo while installing.** It's not required, and using it may cause problems later. If you face permissions issues, ensure that you have the necessary permissions for the directory in which you're trying to set up Oppia. If you run into any other installation problems, please read these notes.
Note: If you run into errors while installing Oppia, please try deleting the directories
../oppia_tools/
node_modules/
third_party/
core/templates/prod/
local_compiled_js/
and running start.sh again.
Note: Oppia uses the npm tool to install some packages. This tool accesses both ~/tmp and ~/.npm, and has been known to occasionally encounter permissions issues with those directories. You may need to either delete these directories and all their contents (if they do not contain anything else that needs to be preserved), or change their permissions so that they are owned by you, which you can do by running
sudo chown -R {{YOUR_USERNAME}} ~/tmp
sudo chown -R {{YOUR_USERNAME}} ~/.npm
where {{YOUR_USERNAME}} should be replaced by your username.
- The
start.shscript will start a development server at http://localhost:8181. It should look something like this:
You can also view the App Engine admin console at http://localhost:8000.
-
Loading the demo explorations. The default Oppia installation comes with a set of demo explorations. On startup, none of these are loaded. To load them, log in to your server as an admin, then click your username in the top-right corner and choose 'Admin Page'. This will open the admin page, from which you can load the demo explorations.
-
Shutting down the development server. When you're done, you can shut down the development server by typing Ctrl+C into the terminal.
- To preserve the contents of the local datastore between consecutive runs, use the
--save_datastoreargument when starting up the dev server:
python -m scripts.start --save_datastore
The following notes are thanks to Prasanna Patil (@prasanna08). They come with no guarantees, and may change some settings on your local machine, so please make sure you fully understand their ramifications before following them!
Arch uses pacman as package manager, so the install_prerequisites.sh script is not going to work and all of the prerequisites have to be installed manually using pacman. Just type the following command in the shell (notation: # denotes sudo access while $ denotes normal user access):
# pacman -Sy python2 python2-pip python2-setuptools curl jre7-openjdk unzip git python2-yaml
Also, note that pacman doesn't support google chrome in the default package manager (which is needed to run frontend and e2e tests). However, you can use the chromium package instead; this is an open-source fork of google chrome. Here's how to do it -- install the chromium browser, and then create a soft link from the google-chrome command to chromium:
# pacman -Sy chromium
# cd /usr/bin
# ln -sf chromium google-chrome
If you do want to use google chrome instead, you could also use the third-party repository AUR (with the help of yaourt).
Arch uses the pip command for pip 3 (which installs libraries for python 3) and pip2 command for python 2, so we have to install all necessary (python’s) 3rd party libraries manually. For this go to the ‘oppia_tools’ directory and open a terminal and type following commands (note: make sure that you are in oppia_tools folder).
$ pip2 install pylint==1.7.1 --target="./pylint-1.7.1"
$ pip2 install numpy==1.6.1 --target="./numpy-1.6.1"
$ pip2 install browsermob-proxy==0.7.1 --target="./browsermob-proxy-0.7.1"
$ pip2 install selenium==2.53.2 --target="./selenium-2.53.2"
$ curl -o webtest-download.zip -L https://github.com/Pylons/webtest/archive/1.4.2.zip
$ unzip webtest-download.zip -d .
$ rm webtest-download.zip
$ touch ./pylint-1.7.1/backports/__init__.py
Once this step is done, run python -m scripts.start to install other necessary files such as node modules and static js libraries and google app engine. Even after downloading everything server will fail to start and show errors. If you don’t see any errors then you have successfully setup Oppia in Arch and don’t have to execute following steps but it is highly likely that server won’t work.
In Arch, the python command refers to python 3 (in contrast to Ubuntu, where python refers to python 2). This has to be fixed. There are two ways to do so. One is to modify the python files and other is to modify system links.
- Modify python (.py) files: two files have to be modified slightly here. First is dev_appserver.py file of the google app engine. Go to ‘oppia_tools/google_appengine_1.9.50/google_appengine’ and open ‘dev_appserver.py’ file. On the first line replace ‘python’ with ‘python2’. Secondly go to the ‘oppia/.git/hooks/prepush.py’ file and open it. On the very first line replace ‘python’ with ‘python2’.
- Modify system links: go to the /usr/bin and type following command.
# ln -sf python2 python
Note: make sure you have already executed ‘python -m scripts.start’ before doing this step and all the necessary files were downloaded by the script. Basically at this point your Oppia server should start showing logs (error logs) in the terminal but you won’t be able to access Oppia in browser.
One of the highlights of Arch is that it is always up to date from linux to all packages. That is also the case with python2. Arch uses latest version of the python 2 which is 2.7.14. This version is incompatible with Google App Engine v1.9.50, currently used by Oppia. To fix this go to ‘oppia_tools/google_appengine_1.9.50/google_appengine/google/appengine/dist27’ and open ‘socket.py’ file. In this file go to the line 73 (or, alternatively, search for ‘RAND_egd’) and remove import of ‘RAND_egd’ from that line.
Core documentation
- Oppia's mission
- Code of Conduct
- Get involved!
- Google Summer of Code 2021
- Season of Docs 2021
- Outreachy Dec 2021 to Mar 2022
Developing Oppia
- FAQs
- Installing Oppia
- Tips for common IDEs
- Make a pull request
- Common pull request workflows
- How to get help
- Learning resources for developers
- Git cheat sheet
- Codebase Overview
- List of current projects
- Good first issues
- Coding Guidelines
- Coding style guide
- Guidelines for creating new files
- How to add a new page
- How to write type definitions
- How to write design docs
- Revert and Regression Policy
- Debugging
- Guidelines for launching new features
- Feature Gating
- Lint Checks
- Oppia's code owners and checks to be carried out by developers
- Privacy aware programming
- Backend Type Annotations
- Bytes and string handling in Python 3
- Guidelines for Developers with Write Access to oppia/oppia
- Testing
- Release Process
Developer Reference
- Oppiabot
- Frontend
- Backend
- Writing state migrations
- Writing audit jobs
- Writing new one-off MapReduce jobs
- Calculating statistics
- Storage models
- Writing validators for storage models
- Coding for speed in GAE
- Adding static assets
- Wipeout Implementation
- Notes on NDB Datastore transactions
- How to handle merging of change lists for exploration properties
- Instructions for editing roles or actions
- Protocol buffers
- Translations
- Webpack
- Third-party libraries
- Extension frameworks
- Oppia-ml Extension
- Mobile development
- Mobile device testing
- Performance testing
- Build process
- Team structure
- Playbooks
- Past Events
Fun
