Skip to content

Commit ca70ffd

Browse files
committed
reflected changes requested by makkoncept
1 parent 03be8fd commit ca70ffd

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

README.md

+6-9
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ To install these, execute the following commands:
6464
6565
1. `curl https://raw.githubusercontent.com/kennethreitz/pipenv/master/get-pipenv.py | python`
6666
2. `sudo apt update`
67-
3. [Install Node.js](https://github.com/nodesource/distributions/blob/master/README.md#installation-instructions)
68-
5. `sudo apt install npm `
67+
3. [Install Node.js](https://github.com/nodesource/distributions/blob/master/README.md#table-of-contents)
68+
4. `sudo apt install npm `
6969

7070
[pipenvdocs]:https://pipenv.readthedocs.io/en/latest/
7171
[nodejswebsite]:https://nodejs.org/en/
@@ -102,19 +102,16 @@ else fails, try removing the virtual environment and reinstalling:
102102

103103
* Should you get series of type errors that looks something like `npm ERR! typeerror Error: Missing required argument #1`, after running `pipenv run lektor server -f webpack`, this is most likely due to running an older version of Node.js.
104104

105-
As stated earlier in the prerequisites, you should be running Node.js versions 12+.
106-
107-
Follow [this](https://github.com/nodesource/distributions/blob/master/README.md#installation-instructions) tutorial to upgrade your node version (for GNU/Unix systems).
105+
As stated earlier in the prerequisites, you should be running Node.js version 12+.
106+
Follow [this](https://github.com/nodesource/distributions/blob/master/README.md#table-of-contents) tutorial to upgrade your node version (for GNU/Unix systems).
108107

109108
* Should you get an `OSError: [Errno 28] inotify watch limit reached` after running any command, this means that your system file watcher is running out of alloted handles, usually because the workspace is large and contains many files.
110109

111110
The solution is to run:
112-
113-
`sudo sysctl fs.inotify.max_user_watches=524288`
111+
`sudo sysctl fs.inotify.max_user_watches=524288`
114112

115113
This increases your `inotify` watch limit (for the session) to 524288, which is the maximum value and is also enough to allow the setup go through.
116-
117-
You can learn more about file watchers [from this blog post](https://unixia.wordpress.com/2018/04/28/inotify-watch-limit-reached-wait-what/) or [from the VS Code documentation](https://code.visualstudio.com/docs/setup/linux#_visual-studio-code-is-unable-to-watch-for-file-changes-in-this-large-workspace-error-enospc).
114+
You can learn more about file watchers [from this blog post](https://unixia.wordpress.com/2018/04/28/inotify-watch-limit-reached-wait-what/) or [from the VS Code documentation](https://code.visualstudio.com/docs/setup/linux#_visual-studio-code-is-unable-to-watch-for-file-changes-in-this-large-workspace-error-enospc).
118115

119116
## Deployment
120117

0 commit comments

Comments
 (0)