Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added instructions to readme #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 20 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,38 @@
# Octofab
A tool to turn the awesome Octoprint into a standalone independent application for use on Smoothieboards

# Using

First clone this repository :
# Installing on Smoothie
* Copy ```index.html``` and the ```static``` folder to your smoothie's sd card
* [Enable the ethernet module](http://smoothieware.org/network)
* Connect the smoothieboard to ethernet
* Go to ```http://ip/sd/index.html``` in your browser, replace 'ip' with your board's IP address

git clone https://github.com/arthurwolf/Octofab.git

Move to the new repository
# Using

cd Octofab/
* First clone this repository:

In there, clone Octoprint itself
```git clone https://github.com/arthurwolf/Octofab.git```

git clone https://github.com/foosel/OctoPrint.git
* Move to the new repository

Move to the OctoPrint folder:
```cd Octofab/```

cd OctoPrint
* In there, clone OctoPrint itself

Create a user-owned virtual environment therein:
```git clone https://github.com/foosel/OctoPrint.git```

virtualenv --system-site-packages venv
* Move to the OctoPrint folder:

Install OctoPrint into that virtual environment:
```cd OctoPrint```

./venv/bin/python setup.py install
* Create a user-owned virtual environment therein:

Run Octoprint
```virtualenv --system-site-packages venv```

./venv/bin/octoprint
* Install OctoPrint into that virtual environment:

```./venv/bin/python setup.py install```

* Run OctoPrint

```./venv/bin/octoprint```