FyroxEngine / Fyrox

3D and 2D game engine written in Rust
https://fyrox.rs
MIT License
7.76k stars 353 forks source link

As of now, it seems like `fyrox-template` command doesn't work (at least for me). #332

Closed jsh3lly closed 2 years ago

jsh3lly commented 2 years ago

Did cargo install fyrox-template. Installed fyrox-template v0.3.0. Then did fyrox-template and got zsh: command not found: fyrox-template.

DuckEater54 commented 2 years ago

Check the $user/.cargo/bin/ folder and check for a fyrox-template executable. List what executables you have in the folder.

jsh3lly commented 2 years ago

Right. Just did that. I realised that the executable could be in some /bin folder not in $PATH. Did cargo started doing this recently? (Not putting bins in path?) or am I missing something?

DuckEater54 commented 2 years ago

Right. Just did that. I realised that the executable could be in some /bin folder not in $PATH. Did cargo started doing this recently? (Not putting bins in path?) or am I missing something?

No, cargo does add the .cargo/bin/ folder to the path on windows. When I installed arcolinux one time I had to manually add all the stuff to $PATH.

jsh3lly commented 2 years ago

Alright, maybe it makes sense as I use endevouros which is also an Arch derivative. Thank you so much!