Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordylanwinn <dylanwinn3@gmail.com>2013-03-17 08:57:31 +0400
committerdylanwinn <dylanwinn3@gmail.com>2013-03-17 08:57:31 +0400
commit23bbdd3eb7eb0b952cd0a04fb23a3c1a06263032 (patch)
tree33b34010e0f1e229a809796710cf99f9895076fc /README.md
parent348889e79846899517177dad223227c68b84fff7 (diff)
Update README.md
Added build instructions for Ubuntu.
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/README.md b/README.md
index 1913b171db..8fa10cb506 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,26 @@ Packaging
Cura development comes with a script "package.sh", this script has been designed to run under unix like OSes (Linux, MacOS). Running it from sygwin is not a priority.
The "package.sh" script generates a final release package. You should not need it during development, unless you are changing the release process. If you want to distribute your own version of Cura, then the package.sh script will allow you to do that.
+Debian and Ubuntu Linux
+--------
+
+To build and install Cura, run the following commands:
+
+```bash
+git clone https://github.com/daid/Cura.git
+
+sudo apt-get install python-opengl
+sudo apt-get install python-numpy
+sudo apt-get install python-serial
+sudo apt-get install python-setuptools
+sudo apt-get install cx-freeze
+
+cd Cura
+
+sudo ./package.sh debian
+
+sudo dpkg -i ./scripts/linux/Cura*.deb
+```
Mac OS X
--------