Windows command line alternative for "export"

18,869

Solution 1

set

(Answers must be 30 chars minimum. Oh yes they must.)

Solution 2

SET ML_PATH="$HOME/ml"
SET mkdir $ML_PATH`
Share:
18,869
Seth
Author by

Seth

Updated on July 21, 2022

Comments

  • Seth
    Seth almost 2 years

    I've bought a book about Machine Learning, and it needs an environment setup. The code in the book is

    $ export ML_PATH="$HOME/ml"
    $ mkdir -p $ML_PATH
    

    but as far as I know, this are Linux/UNIX commands, so there are alternatives for Windows?

  • Hüseyin Zengin
    Hüseyin Zengin almost 4 years
    Welcome to Stackoverflow, please consider including more details in your answer.