We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddf740d commit bc1f2e7Copy full SHA for bc1f2e7
conda/web-installer/post-install.bat.jinja2
@@ -1,6 +1,12 @@
1
echo Entering Conda Environment
2
call %PREFIX%\condabin\activate.bat
3
4
+echo Updating conda
5
+call conda update -y -n base conda
6
+
7
+echo Cleaning Packages
8
+call conda clean -a -y
9
10
echo Installing CadQuery
11
call conda install -y cadquery={{ tag_version }}
12
conda/web-installer/post-install.sh.jinja2
@@ -3,6 +3,12 @@
source $PREFIX/bin/activate
+conda update -y -n base conda
+conda clean -a -y
13
conda install -y cadquery={{ tag_version }}
14
0 commit comments