nicer setup instructions
This commit is contained in:
parent
33ea57a69e
commit
4ddc3b53a7
17
README.md
17
README.md
|
@ -15,9 +15,22 @@ Using CadQuery, you can write short, simple scripts that produce high quality CA
|
||||||
Installing
|
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
|
pip install cadquery
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from distutils.core import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='cadquery',
|
name='cadquery',
|
||||||
version='0.1.2',
|
version='0.1.3',
|
||||||
url='https://github.com/dcowden/cadquery',
|
url='https://github.com/dcowden/cadquery',
|
||||||
license='LGPL',
|
license='LGPL',
|
||||||
author='David Cowden',
|
author='David Cowden',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user