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

github.com/kliment/Printrun.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKliment Yanev <kliment.yanev@gmail.com>2018-03-23 17:44:29 +0300
committerKliment Yanev <kliment.yanev@gmail.com>2018-03-23 17:44:29 +0300
commitcea56b6dc675d63ca2e2ec22b320aecd48028b38 (patch)
tree7def5139e82dfe9f59daf39d104faf2cd8d5f357 /buildinstructions.txt
parenteeba91d76a49e09f504b2b2c65c7153323c0af65 (diff)
Clarify binary build instructions
Diffstat (limited to 'buildinstructions.txt')
-rw-r--r--buildinstructions.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/buildinstructions.txt b/buildinstructions.txt
index bbf3064..cce2683 100644
--- a/buildinstructions.txt
+++ b/buildinstructions.txt
@@ -1,6 +1,6 @@
setup on osx:
(install python 3.6)
-(install python extension compile environment)
+(install python extension compile environment, this is automagically done if you have xcode)
(install git)
git clone http://github.com/kliment/Printrun.git
cd Printrun
@@ -9,6 +9,7 @@ git pull
python3 -m venv v3
. ./v3/bin/activate
pip install --upgrade pip
+pip install --upgrade setuptools
pip install cffi
pip install -r requirements.txt
pip install cython
@@ -30,7 +31,7 @@ pyinstaller --clean pronterface.spec -y
setup on windows:
(install python 3.6)
-(install python extension compile environment)
+(install python extension compile environment, see https://wiki.python.org/moin/WindowsCompilers )
(install git)
git clone http://github.com/kliment/Printrun.git
cd Printrun
@@ -39,6 +40,7 @@ git pull
\path\to\python3\python -m venv v3
v3\Scripts\activate
pip install --upgrade pip
+pip install --upgrade setuptools
pip install cffi
pip install -r requirements.txt
pip install cython