-
Notifications
You must be signed in to change notification settings - Fork 119
Feature Request: Added documentation for installation of graphicsmagick #455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,14 @@ | ||
| ## Table of Contents | ||
|
|
||
| * [Install prerequisites](#install-prerequisites) | ||
| * [Clone Oppia](#clone-oppia) | ||
| * [Setup a virtual environment](#setup-a-virtual-environment) | ||
| * [Running Oppia on a development server](#running-oppia-on-a-development-server) | ||
| * [Tips and tricks](#tips-and-tricks) | ||
| * [Notes on installation on Arch Linux systems](#notes-on-installation-on-arch-linux-systems) | ||
| * [Changes to installation prerequisites](#changes-to-installation-prerequisites) | ||
| * [Changes to the virtual environment setup](#changes-to-the-virtual-environment-setup) | ||
| - [Table of Contents](#table-of-contents) | ||
| - [Install prerequisites](#install-prerequisites) | ||
| - [Clone Oppia](#clone-oppia) | ||
| - [Setup a virtual environment](#setup-a-virtual-environment) | ||
| - [Running Oppia on a development server](#running-oppia-on-a-development-server) | ||
| - [Tips and tricks](#tips-and-tricks) | ||
| - [Notes on installation on Arch Linux systems](#notes-on-installation-on-arch-linux-systems) | ||
| - [Changes to installation prerequisites](#changes-to-installation-prerequisites) | ||
| - [Changes to the virtual environment setup](#changes-to-the-virtual-environment-setup) | ||
|
|
||
| **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). | ||
|
|
||
|
|
@@ -33,7 +34,23 @@ bash scripts/install_prerequisites.sh | |
|
|
||
| 2. Verify that Java version 11+ is installed. You can use the command `java -version` to do this. (If you need to change the default binary for the `java` command on your machine, use `sudo update-alternatives --config java`.) | ||
|
|
||
| 3. Install Chrome from [Google's website](https://www.google.com/chrome). You'll need this to run tests. | ||
| 3. Install GraphicsMagick to enable local image compression and ensure tests run successfully. Follow the appropriate steps below based on your operating system: | ||
| - For Ubuntu/Debian systems: | ||
| ``` | ||
| sudo apt-get update | ||
| sudo apt-get install graphicsmagick | ||
| ``` | ||
|
Comment on lines
+37
to
+42
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why not just add graphicsmagick to the packages installed in step 1 and to |
||
| - For MacOS: | ||
| ``` | ||
| brew install graphicsmagick | ||
| ``` | ||
|
Comment on lines
+43
to
+46
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The macOS installation instructions should go in our separate macOS installation guide |
||
| After installation, verify that GraphicsMagick is correctly installed by running: | ||
| ``` | ||
| gm version | ||
| ``` | ||
|
Comment on lines
+47
to
+50
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you can skip this, as we don't confirm installation of any of our other prerequisites. Dropping this will also let you more easily fold this change into step 1 |
||
| You should see version information printed in the terminal. | ||
|
|
||
| 4. Install Chrome from [Google's website](https://www.google.com/chrome). You'll need this to run tests. | ||
|
|
||
|
|
||
| ## Clone Oppia | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We exclude the table of contents entry from the table of contents