-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.bat
28 lines (24 loc) · 865 Bytes
/
build.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
if not exist ".\.vscode\" mkdir .\.vscode
(
echo {
echo // Use IntelliSense to learn about possible attributes.
echo // Hover to view descriptions of existing attributes.
echo // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
echo "version": "0.2.0",
echo "configurations": [
echo {
echo "name": "Python: Archivo actual",
echo "type": "python",
echo "request": "launch",
echo "program": "${file}",
echo "console": "integratedTerminal"
echo }
echo ]
echo }
) > .\.vscode\launch.json
(
echo {
echo "python.defaultInterpreterPath": ".\\env\\Scripts\\python.exe",
echo }
) > .\.vscode\settings.json
conda env create -f environment_complete.yml --prefix env