-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathINSTALL
57 lines (33 loc) · 1.62 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
This file outlines how to run Buildcraft on your machine. For a description of what this program does, see README.
For the licence, see LICENCE.
0. CONTENTS
The following is an outline of this file.
0. Contents
How to run on:
1. Linux
2. Windows
3. Mac OS X
4. Wine
1. LINUX
On Debian-based machines, it is easiest to install the .deb file from the linux release at https://github.com/projectbuildcraft/buildcraft/tarball/linux. Then, you can just run:
dpkg -i buildcraft<version>.deb
where <version> is specific to the version being installed.
Alternatively, you can install everything manually from source as follows.
To run on linux, make sure that you have installed the following packages, on Debian-based machines named:
-python
-python-tk
-python-imaging-tk
Note that this project runs on python 2.7. The summary of the above requirements is that you need an X server and the Python Imaging Library (PIL).
To install these packages on a Debian-based distro such as Ubuntu, type the following. This will require an administrative password.
sudo apt-get update
sudo apt-get install python python-tk python-imaging-tk
The python 2.7 interpreter is assumed to be installed at /usr/bin/python, which should be the default on most Linux distros.
You can run buildcraft by changing into this directory and running the following command.
./buildcraft
You may have to give it executable permissions:
chmod +x buildcraft
Assets may have to be copied into /usr/share/games/buildcraft/
We're working to support native installation for other packaging systems in the future. Any assistance would be appreciated.
2. WINDOWS
3. MAC OS X
4. WINE