- Create python environment
mamba create -n multi_algo python mamba activate multi_algo
- run file
python myfile.py
- Install Node.js and TypeScript:
Ensure Node.js is installed, then install TypeScript globally:npm install -g typescript
- Initialize
tsconfig.json:
In your project directory, run:tsc --init
- Compile the TypeScript file:
Usetscto compile your.tsfile:tsc yourfile.ts
- if config-files exist Compile using
tsc:npx tsc
"The way is in training." — Miyamoto Musashi
- Compile:
g++ yourfile.cpp -o output
- (Optional: Clang:)
sudo apt-get install clang clang++ -std=c++17 yourfile.cpp -o output
- Run:
./output
"Mastery is often simplicity." — Zen Proverb
- Run directly:
go run yourfile.go
- Compile and run:
go build yourfile.go ./yourfile
"Act without doing." — Lao Tzu