Skip to content

Latest commit

 

History

History
69 lines (58 loc) · 1.24 KB

File metadata and controls

69 lines (58 loc) · 1.24 KB

Environment Preparation

  1. Create python environment
    mamba create -n multi_algo python
    mamba activate multi_algo
  2. run file
    python myfile.py 
  1. Install Node.js and TypeScript:
    Ensure Node.js is installed, then install TypeScript globally:
    npm install -g typescript
  2. Initialize tsconfig.json:
    In your project directory, run:
    tsc --init
  3. Compile the TypeScript file:
    Use tsc to compile your .ts file:
    tsc yourfile.ts
  4. if config-files exist Compile using tsc:
    npx tsc

"The way is in training." — Miyamoto Musashi

  1. Compile:
    g++ yourfile.cpp -o output
  2. (Optional: Clang:)
    sudo apt-get install clang
    clang++ -std=c++17 yourfile.cpp -o output
  3. Run:
    ./output

"Mastery is often simplicity." — Zen Proverb

  1. Run directly:
    go run yourfile.go
  2. Compile and run:
    go build yourfile.go
    ./yourfile

"Act without doing." — Lao Tzu