2022년 11월 15일 오후 11:08
- Install Node.js
- Linux: Debian/Ubuntu:
apt install nodejs
May need to be followed up by:apt install npmArch Linuxyay -S tiddlywiki
(installs node and tiddlywiki) - Mac
brew install node - Android
 - Other 
 
 - Linux: 
 - Open a command line terminal and type:
npm install -g tiddlywikiIf it fails with an error you may need to re-run the command as an administrator:sudo npm install -g tiddlywiki(Mac/Linux) - Ensure TiddlyWiki is installed by typing:
tiddlywiki --version- In response, you should see TiddlyWiki report its current version (eg "5.3.8". You may also see other debugging information reported.)
 
 - Try it out:
tiddlywiki mynewwiki --init serverto create a folder for a new wiki that includes server-related componentstiddlywiki mynewwiki --listento start TiddlyWiki- Visit http://127.0.0.1:8080/ in your browser
 - Try editing and creating tiddlers
 
 - Optionally, make an offline copy:
- click the save changes button in the sidebar, OR
 tiddlywiki mynewwiki --build index
 
The -g flag causes TiddlyWiki to be installed globally. Without it, TiddlyWiki will only be available in the directory where you installed it.