From: dylanwinn Date: Sun, 17 Mar 2013 04:57:31 +0000 (-0700) Subject: Update README.md X-Git-Tag: 13.05~64^2~26^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=23bbdd3eb7eb0b952cd0a04fb23a3c1a06263032;p=cura.git Update README.md Added build instructions for Ubuntu. --- diff --git a/README.md b/README.md index 1913b171..8fa10cb5 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 --------