File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ conda_default_channels:
22
22
specs:
23
23
- python 3.10*
24
24
- 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
26
27
# - cadquery
27
28
28
29
post_install: post-install.sh # [unix]
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ call %PREFIX%\condabin\activate.bat
4
4
echo Installing CadQuery
5
5
call conda install -c conda-forge -c cadquery -y cadquery={{ tag_version }}
6
6
7
+ echo Installing jupyter-cadquery
8
+ pip install jupyter-cadquery==3.0.0rc3 matplotlib
9
+ call conda install -y pywin32
10
+
7
11
echo Cleaning Packages
8
12
call conda clean -a -y
9
13
call conda deactivate
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ source $PREFIX/bin/activate
6
6
echo Installing CadQuery
7
7
conda install -c conda-forge -c cadquery -y cadquery={{ tag_version }}
8
8
9
+ echo Installing jupyter-cadquery
10
+ pip install jupyter-cadquery==3.0.0rc3 matplotlib
11
+
9
12
echo Cleaning Packages
10
13
conda clean -a -y
11
14
You can’t perform that action at this time.
0 commit comments