I can not create a project in rails

0

I installed rails from link

After installing it, I wanted to create a project with the command

C:\Sites>rails new blog

But when executing the command, the answer is as follows:

  

The route can not be found.

Can you give me any indication of what could be? ..... It's the first time I install it.

    
asked by Stevn 17.10.2016 в 15:55
source

1 answer

1

In general it is not advisable to use rails in Windows since it generates many problems (many important gems just do not work well), it is advisable to use a GNU / Linux distro or if you use Windows 10, Use the Windows subsystem to use bash . Now, with the problem that is presented to you, it is because you do not have rails added to the PATH , you have to modify the environment variables.

    
answered by 19.10.2016 / 09:00
source