Fix Python version info in pip installation instructions (#1498)
* Fix Python version info in pip installation instructions * Moved refs to Python 3.9 and newer * README update --------- Co-authored-by: AU <adam-urbanczyk@users.noreply.github.com>
This commit is contained in:
@ -81,7 +81,7 @@ mamba install -c conda-forge -c cadquery cadquery=master
|
||||
|
||||
### CadQuery Installation Via Pip
|
||||
|
||||
CadQuery has a complex set of dependencies including OCP, which is our set of bindings to the OpenCASCADE CAD kernel. OCP is distributed as binary wheels for Linux, MacOS and Windows. However, there are some limitations. Only Python 3.8 through 3.10 are currently supported, and some older Linux distributions such as Ubuntu 18.04 are not supported. If the pip installation method does not work for your system, you can try the conda installation method.
|
||||
CadQuery has a complex set of dependencies including OCP, which is our set of bindings to the OpenCASCADE CAD kernel. OCP is distributed as binary wheels for Linux, MacOS and Windows. However, there are some limitations. Only Python 3.9 through 3.12 are currently supported, and some older Linux distributions such as Ubuntu 18.04 are not supported. If the pip installation method does not work for your system, you can try the conda installation method.
|
||||
|
||||
It is highly recommended that a virtual environment is used when installing CadQuery, although it is not strictly required. Installing CadQuery via pip requires a up-to-date version of pip, which can be obtained with the following command line (or a slight variation thereof).
|
||||
```
|
||||
|
@ -86,7 +86,7 @@ Add the *conda-forge* channel explicitly to the install command if needed (not u
|
||||
Install via pip
|
||||
---------------
|
||||
|
||||
CadQuery has a complex set of dependencies including OCP, which is our set of bindings to the OpenCASCADE CAD kernel. OCP is distributed as binary wheels for Linux, MacOS and Windows. However, there are some limitations. Only Python 3.8 through 3.10 are currently supported, and some older Linux distributions such as Ubuntu 18.04 are not supported. If the pip installation method does not work for your system, you can try the conda installation method.
|
||||
CadQuery can be installed via pip on Linux, MacOS and Windows. Python versions 3.9 and newer are supported by CadQuery, however a bleeding-edge Python installation may be broken due to lagging support in CadQuery's complex set of dependencies. If the pip installation method does not work for your system, you can try the conda installation method above.
|
||||
|
||||
It is highly recommended that a virtual environment is used when installing CadQuery, although it is not strictly required. Installing CadQuery via pip requires an up-to-date version of pip, which can be obtained with the following command line (or a slight variation thereof).:
|
||||
|
||||
|
@ -2,7 +2,7 @@ name: cadquery
|
||||
channels:
|
||||
- conda-forge
|
||||
dependencies:
|
||||
- python>=3.8,<=3.12
|
||||
- python>=3.9,<=3.12
|
||||
- ipython
|
||||
- ocp=7.7.2
|
||||
- vtk=*=qt*
|
||||
|
Reference in New Issue
Block a user