Skip to content

Commit 2fd1ec5

Browse files
authored
Remove ? from Issues-with-installation.md file name (oppia#78)
1 parent dcce62e commit 2fd1ec5

7 files changed

+8
-8
lines changed

GHC-Open-Source-Day-2019.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To make code changes, you will require a Github account with 2 factor authentica
3838

3939
### Install Oppia on your machine
4040
* Create a new, empty folder called `opensource/` in your computer's home folder. Navigate to it (`cd opensource`), then [fork and clone](https://help.github.com/articles/fork-a-repo/) the Oppia repo so that it gets downloaded into `opensource/oppia`.
41-
* Then follow the appropriate installation instructions -- [Linux](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Linux%29), [Mac OS](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Mac-OS%29), [Windows](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Windows%29). (If you run into any problems during installation, please read [these notes](https://github.com/oppia/oppia/wiki/Issues-with-installation%3F).)
41+
* Then follow the appropriate installation instructions -- [Linux](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Linux%29), [Mac OS](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Mac-OS%29), [Windows](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Windows%29). (If you run into any problems during installation, please read [these notes](https://github.com/oppia/oppia/wiki/Issues-with-installation).)
4242

4343
## Some useful links
4444
_Oppia_ [Wiki Page](https://github.com/oppia/oppia/wiki) | [Documentation](https://oppia.github.io/#/) | [Full "Getting Started" page](https://github.com/oppia/oppia/wiki/Contributing-code-to-Oppia#setting-things-up)

GHC-Open-Source-Day.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To make code changes, you will require a Github account with 2 factor authentica
3838

3939
### Install Oppia on your machine
4040
* Create a new, empty folder called `opensource/` in your computer's home folder. Navigate to it (`cd opensource`), then [fork and clone](https://help.github.com/articles/fork-a-repo/) the Oppia repo so that it gets downloaded into `opensource/oppia`.
41-
* Then follow the appropriate installation instructions -- [Linux](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Linux%29), [Mac OS](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Mac-OS%29), [Windows](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Windows%29). (If you run into any problems during installation, please read [these notes](https://github.com/oppia/oppia/wiki/Issues-with-installation%3F).)
41+
* Then follow the appropriate installation instructions -- [Linux](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Linux%29), [Mac OS](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Mac-OS%29), [Windows](https://github.com/oppia/oppia/wiki/Installing-Oppia-%28Windows%29). (If you run into any problems during installation, please read [these notes](https://github.com/oppia/oppia/wiki/Issues-with-installation).)
4242

4343
## Some useful links
4444
_Oppia_ [Wiki Page](https://github.com/oppia/oppia/wiki) | [Documentation](https://oppia.github.io/#/) | [Full "Getting Started" page](https://github.com/oppia/oppia/wiki/Contributing-code-to-Oppia#setting-things-up)

Get-help.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ At Oppia we don’t care how silly your question is! Just ensure your question i
6060

6161
2. Make sure each step succeeds (verify it with the expected behavior if mentioned in the wiki).
6262

63-
3. In case of any unexpected behavior/errors at any step, make sure you check out our wiki on [how to troubleshoot when you are facing installation errors](https://github.com/oppia/oppia/wiki/Issues-with-installation%3F#when-you-encounter-an-installation-error).
63+
3. In case of any unexpected behavior/errors at any step, make sure you check out our wiki on [how to troubleshoot when you are facing installation errors](https://github.com/oppia/oppia/wiki/Issues-with-installation#when-you-encounter-an-installation-error).
6464

6565
If you are still not able to fix your error, start following the section below to raise your question on [GitHub Discussions](https://github.com/oppia/oppia/discussions/categories/setup-issues).
6666

Installing-Oppia-(Linux;-Python-3).md

+3-3
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ For your virtual environment, we recommend you use [pyenv](https://github.com/py
155155
```sh
156156
$ sudo apt install direnv
157157
```
158-
158+
159159
6. Setup direnv into your shell. Add following lines to the end of `.bashrc` (see [here](https://askubuntu.com/a/127059) for where to find this file):
160160
```bash
161161
eval "$(direnv hook bash)"
@@ -175,7 +175,7 @@ For your virtual environment, we recommend you use [pyenv](https://github.com/py
175175
}
176176
```
177177

178-
8. Create a virtual environment for oppia by adding file named `.envrc` into the parent folder of the oppia repository
178+
8. Create a virtual environment for oppia by adding file named `.envrc` into the parent folder of the oppia repository
179179
with this content:
180180

181181
```console
@@ -220,7 +220,7 @@ For your virtual environment, we recommend you use [pyenv](https://github.com/py
220220
221221
The first time you run this script, it will take a while -- about 5 - 10 minutes when we last tested it in Sep 2020, though this depends on your Internet connection. (It might also hang after "Checking if pip is installed on the local machine" due to the grpcio build being slow -- just give it some time, and it should finish.) Subsequent runs should be much faster. The `start.py` 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.
222222
223-
**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](https://github.com/oppia/oppia/wiki/Issues-with-installation%3F).
223+
**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](https://github.com/oppia/oppia/wiki/Issues-with-installation).
224224

225225
**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.
226226

Installing-Oppia-(Mac-OS;-Python-3).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ For your vitual environment, we recommend you use [pyenv](https://github.com/pye
231231
232232
The first time you run this script, it will take a while (about 5 - 10 minutes when we last tested it in Dec 2018, though this depends on your Internet connection). Subsequent runs should be much faster. The `start.py` 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.
233233
234-
**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|Issues-with-installation?]]
234+
**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|Issues-with-installation]]
235235
236236
**Note**: The script will create a number of files and folders that are siblings of the `oppia/` root directory (e.g. `oppia_tools`). This is done so that these two folders will not be uploaded to App Engine when the application is deployed to the web.
237237

Installing-Oppia.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ To install Oppia, follow these instructions:
1212
* [[Mac OS|Installing-Oppia-(Mac-OS;-Python-3)]]
1313
* [[Windows|Installing-Oppia-(Windows;-Python-3)]]
1414

15-
If you run into any problems during installation, please read [[these notes|Issues-with-installation?]] and the [[Troubleshooting page|Troubleshooting]].
15+
If you run into any problems during installation, please read [[these notes|Issues-with-installation]] and the [[Troubleshooting page|Troubleshooting]].
1616

1717
Take a look at our [[guide for getting started with some common code editors|Tips-for-common-IDEs]].
1818

File renamed without changes.

0 commit comments

Comments
 (0)