Difference between revisions of "OctoPrint"

From BITPlan Wiki
Jump to navigation Jump to search
Line 4: Line 4:
 
see  
 
see  
 
* https://octoprint.org/download/
 
* https://octoprint.org/download/
* https://community.octoprint.org/t/setting-up-octoprint-on-a-raspberry-pi-running-raspbian/2337
 
  
 +
== Installing Python2.7 including pip and virtual env ==
 
<source lang='bash'>
 
<source lang='bash'>
 
python --version
 
python --version
Line 17: Line 17:
 
Installing collected packages: virtualenv
 
Installing collected packages: virtualenv
 
Successfully installed virtualenv-16.4.0
 
Successfully installed virtualenv-16.4.0
 
git clone https://github.com/foosel/OctoPrint.git
 
 
</source>
 
</source>
virtualenv will not be available via command line at this point so
+
virtualenv will not be available via command line at this point so the instructions
 +
from the [https://community.octoprint.org/t/setting-up-octoprint-on-a-raspberry-pi-running-raspbian/2337 forum article] will provide virtualenv.
 
<source lang='bash'>
 
<source lang='bash'>
 
sudo apt install python-pip python-dev python-setuptools python-virtualenv git libyaml-dev build-essential
 
sudo apt install python-pip python-dev python-setuptools python-virtualenv git libyaml-dev build-essential
 
</source>
 
</source>
from the second link will provide virtualenv.
+
== Obtaining the octoprint source ==
 +
<source>
 +
git clone https://github.com/foosel/OctoPrint.git
 +
</source>
 +
 
 
[[Category:3DPrint]]
 
[[Category:3DPrint]]

Revision as of 11:17, 24 February 2019

https://octoprint.org/

Installation on existing raspbian

see

Installing Python2.7 including pip and virtual env

python --version
Python 2.7.13

pip install virtualenv

Collecting virtualenv
  Downloading https://files.pythonhosted.org/packages/7e/1b/6c00d57127608793e16e8b7f813e64d58a1938505c42fe190d1386ab41e1/virtualenv-16.4.0-py2.py3-none-any.whl (2.0MB)
    100% |████████████████████████████████| 2.0MB 134kB/s 
Installing collected packages: virtualenv
Successfully installed virtualenv-16.4.0

virtualenv will not be available via command line at this point so the instructions from the forum article will provide virtualenv.

sudo apt install python-pip python-dev python-setuptools python-virtualenv git libyaml-dev build-essential

Obtaining the octoprint source

git clone https://github.com/foosel/OctoPrint.git