9
0
mirror of https://github.com/Kas-tle/java2bedrock.sh.git synced 2025-12-19 14:59:13 +00:00

Note about node global path

This commit is contained in:
Kas-tle
2022-05-26 03:32:51 +00:00
committed by GitHub
parent 49f1d3ff24
commit 3cfb595765

View File

@@ -81,8 +81,14 @@ npm i -g spritesheet-js
### Windows ### Windows
Impossible; consider [WSL](https://docs.microsoft.com/en-us/windows/wsl/install-win10). Impossible; consider [WSL](https://docs.microsoft.com/en-us/windows/wsl/install-win10).
#### Special Notes for WSL #### Special Notes for WSL (Ubuntu)
In general, packages on WSL seem to be a little wonky, and sometimes jq-1.5 will be installed, which will not work. To manually install jq-1.6 on WSL, at least for Ubuntu: In general, packages on WSL seem to be a little wonky, and sometimes jq-1.5 will be installed, which will not work. To manually install jq-1.6 on WSL, at least for Ubuntu:
```sh ```sh
wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 && sudo chmod +x jq-linux64 && sudo mv jq-linux64 /usr/bin/jq wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 && sudo chmod +x jq-linux64 && sudo mv jq-linux64 /usr/bin/jq
``` ```
If you install spritesheet-js globally, but the script fails due to missing the dependency, ensure that the folder containing your global node modules is added to your path. If, after installing, `which spritesheet-js` returns no output, you may add global node modules to your path by:
```sh
echo "export PATH=$PATH:$(npm config --global get prefix)/bin" >> ~/.bashrc && source ~/.bashr
```