Skip to content

Commit 9831739

Browse files
committed
Added jupyter-cadquery and ipykernel for use with vscode jupyter
1 parent 23dc98d commit 9831739

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

conda/web-installer/construct.yaml.jinja2

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ conda_default_channels:
2222
specs:
2323
- python 3.10*
2424
- conda
25-
# Occt is to o big to bundle so install during post_install instead
25+
- ipykernel
26+
# Occt is too big to bundle so install during post_install instead
2627
# - cadquery
2728

2829
post_install: post-install.sh # [unix]

conda/web-installer/post-install.bat.jinja2

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ call %PREFIX%\condabin\activate.bat
44
echo Installing CadQuery
55
call conda install -c conda-forge -c cadquery -y cadquery={{ tag_version }}
66

7+
echo Installing jupyter-cadquery
8+
pip install jupyter-cadquery==3.0.0rc3 matplotlib
9+
call conda install -y pywin32
10+
711
echo Cleaning Packages
812
call conda clean -a -y
913
call conda deactivate

conda/web-installer/post-install.sh.jinja2

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ source $PREFIX/bin/activate
66
echo Installing CadQuery
77
conda install -c conda-forge -c cadquery -y cadquery={{ tag_version }}
88

9+
echo Installing jupyter-cadquery
10+
pip install jupyter-cadquery==3.0.0rc3 matplotlib
11+
912
echo Cleaning Packages
1013
conda clean -a -y
1114

0 commit comments

Comments
 (0)