Skip to content

Commit

Permalink
explanation of how to run on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
pr1nce55 committed Sep 13, 2021
1 parent ecc2a1a commit c21fa37
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,30 @@ The structure will appear around every armor stand in the worlds you load. It is
You can go through a structure layer by layer if you like by shift right clicking on the stand. This will minimize all layers except the "active" ones. I cant add poses without adding a behavior pack so for large structures there will be mutiple layers displayed at a time (12 blocks apart)
![alt text](https://github.com/RavinMaddHatter/Structura/blob/main/docs/example_layer.png?raw=true)


## Linux

To start, you definitely need to install the python3-tk package.

Choose the method that suits you:

Debian/Ubuntu:
```bash
sudo apt-get install python3.7-tk
```
Fedora:
```bash
sudo dnf install python3-tkinter
```
Arch:
```bash
yay -S python37 # yay or any other AUR component
```
To run Structure, allow start.sh run and run:
```bash
chmod +x start.sh && sh start.sh
```

## Updating blocks
As of structura 1.3 you can update the blocks manuall and contribut back to the project.
[Here is a write up on how this works](docs/Editing%20Blocks.md)
Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
numpy
nbtlib
pooch
1 change: 1 addition & 0 deletions start.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pip3 install -r requirements.txt && python3 structura.py

0 comments on commit c21fa37

Please sign in to comment.