nicer setup instructions

This commit is contained in:
Dave Cowden 2013-04-23 21:38:38 -04:00
parent 33ea57a69e
commit 4ddc3b53a7
2 changed files with 16 additions and 3 deletions

View File

@ -15,9 +15,22 @@ Using CadQuery, you can write short, simple scripts that produce high quality CA
Installing
============
1. install FreeCAD, version 0.12 or greater for your platform. http://sourceforge.net/projects/free-cad/
1. install FreeCAD, version 0.12 or greater for your platform. http://sourceforge.net/projects/free-cad/.
2. install::
2. adjust your path if necessary. FreeCAD bundles a python interpreter, but you'll probably want to use your own,
preferably one that has virtualenv available. To use FreeCAD from any python interpreter, just append the FreeCAD
lib directory to your path. On (*Nix)::
import sys
sys.path.append('/usr/lib/freecad/lib')
or on Windows::
import sys
sys.path.append('/c/apps/FreeCAD/bin')
*NOTE* FreeCAD on Windows will not work with python 2.7-- you must use pthon 2.6.X!!!!
3. install cadquery::
pip install cadquery

View File

@ -2,7 +2,7 @@ from distutils.core import setup
setup(
name='cadquery',
version='0.1.2',
version='0.1.3',
url='https://github.com/dcowden/cadquery',
license='LGPL',
author='David Cowden',