Python, R and other small handy tools
Command Palette
, type in VSC Export
or VSC Import
the vsc-extensions.txt
file.conda env create --file=myfile.yaml
. Export existing environment by conda env export > myfile.yml
.$ python -m venv .
--> $ cd Scripts
--> $ activate
. Here the python environment can be an Anaconda one.xlwings.bas
from where the xlwings is installed. More examples refer to 's frozen folder.$ pyinstaller <file>.py --clean
to create the stand-alone .exe for Excel. Add option --onefile
to make single file exe, either specify the packages to exclude in the .spec file or use option --exclude pandas
alike to exclude pandas to be wrapped in the exe file. The VBA code of running frozen python can be found in the demo.xlsm file in the 's frozen folder.