Code Monkey home page Code Monkey logo

Comments (5)

SalmanCode avatar SalmanCode commented on May 6, 2024 1

from handson-ml.

Jai-GAY avatar Jai-GAY commented on May 6, 2024

ok, got it, is an additional folder created.

from handson-ml.

ageron avatar ageron commented on May 6, 2024

Yes, exactly, it's just the name of the new environment. You can name it any way you choose.

from handson-ml.

SalmanCode avatar SalmanCode commented on May 6, 2024

Hey, can you mention how did you solve the issue. I keep getting the error "The path isn't specified"

from handson-ml.

ageron avatar ageron commented on May 6, 2024

Hi @SalmanCode ,

Thanks for your question.

The first $ sign on each line is a common representation of the shell prompt. In other words, you should not type it, it's just a symbol which means "type any command after that on the same line in a shell". For example:

$ dir

Means that you must type the command dir in a shell (e.g., Terminal app on MacOSX, or the 'Command Prompt' program on Windows). You should not type the first $ sign.

However, the second dollar sign in $ cd $ML_PATH must be typed on MacOSX or Linux. On Windows, you should type %ML_PATH% instead of $ML_PATH. This syntax asks the shell to look for an environment variable named ML_PATH and to replace $ML_PATH (or %ML_PATH% on Windows) with the value of this environment variable. For example, if the ML_PATH environment variable is equal to /home/salman/ml, then typing cd $ML_PATH will be equivalent to typing cd /home/salman/ml. If the environment variable is not set, then it will be replaced with an empty string. In this case, typing cd $ML_PATH will be equivalent to typing cd. On MacOSX and Linux, this will change the directory to your home directory. I'm not sure what it does on Windows. Perhaps it gives you the error "The path isn't specified".

So you have two options:

  • Either replace $ML_PATH with the path to your ML directory every time you see $ML_PATH.
  • Or set the ML_PATH environment variable. Here's how to set an environment variable.

Does this help?

from handson-ml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.