Skip to content

Instantly share code, notes, and snippets.

@medicationforall
Last active January 19, 2023 12:04
Show Gist options
  • Save medicationforall/531220b892661d501de484e6df64fb20 to your computer and use it in GitHub Desktop.
Save medicationforall/531220b892661d501de484e6df64fb20 to your computer and use it in GitHub Desktop.

Installing CQ-Editor with CadQuery 2 using pip

Pre-Requisites

  • python
  • pip
  • git
  • virtualenvwrapper (optional)

Steps

  • Create a virtual environment for CQ-Editor
mkvirtualenv cqeditor
workon cqeditor
install_requires=[
    "cadquery==2.2.0b2",
    "logbook>=1",
    "path>=16",
    "PyQt5>=5",
    "pyqtgraph==0.12",
    "requests>=2,<3",
    "spyder>=5,<6",
]
  • Locally install via pip
pip install ./
  • Launch the application using run.py
python run.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment