Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PATH variable not updated #706

Open
dlangBugzillaToGithub opened this issue Dec 4, 2020 · 0 comments
Open

PATH variable not updated #706

dlangBugzillaToGithub opened this issue Dec 4, 2020 · 0 comments

Comments

@dlangBugzillaToGithub
Copy link

agenthugo43 reported this on 2020-12-04T10:04:28Z

Transferred from https://issues.dlang.org/show_bug.cgi?id=21454

CC List

  • RazvanN

Description

When installing dmd via .exe PATH is not updated in environment variables resulting in: 
```
'dmd' is not recognized as an internal or external command,
operable program or batch file.
```. Is there a solution to this?
This is the tree in case something broke during the installation:
```
└───dmd2
    ├───html
    │   └───d
    │       ├───articles
    │       ├───changelog
    │       ├───css
    │       ├───foundation
    │       ├───images
    │       │   ├───ddox
    │       │   └───orgs-using-d
    │       ├───js
    │       ├───phobos
    │       ├───spec
    │       └───zlib
    ├───samples
    │   └───d
    │       └───mydll
    ├───src
    │   ├───dmd
    │   │   ├───dmd
    │   │   │   ├───backend
    │   │   │   ├───res
    │   │   │   └───root
    │   │   ├───tests
    │   │   └───vcbuild
    │   ├───druntime
    │   │   ├───.circleci
    │   │   ├───.github
    │   │   │   └───workflows
    │   │   ├───benchmark
    │   │   │   ├───aabench
    │   │   │   ├───arrayops
    │   │   │   ├───extra-files
    │   │   │   └───gcbench
    │   │   │       └───vdparser.extra
    │   │   │           ├───stdext
    │   │   │           └───vdc
    │   │   │               ├───ast
    │   │   │               └───parser
    │   │   ├───changelog
    │   │   ├───def
    │   │   ├───import
    │   │   │   ├───core
    │   │   │   │   ├───gc
    │   │   │   │   ├───internal
    │   │   │   │   │   ├───array
    │   │   │   │   │   ├───elf
    │   │   │   │   │   ├───util
    │   │   │   │   │   └───vararg
    │   │   │   │   ├───stdc
    │   │   │   │   ├───stdcpp
    │   │   │   │   ├───sync
    │   │   │   │   ├───sys
    │   │   │   │   │   ├───bionic
    │   │   │   │   │   ├───darwin
    │   │   │   │   │   │   ├───mach
    │   │   │   │   │   │   ├───netinet
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───dragonflybsd
    │   │   │   │   │   │   ├───netinet
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───freebsd
    │   │   │   │   │   │   ├───netinet
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───linux
    │   │   │   │   │   │   ├───netinet
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───netbsd
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───openbsd
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───posix
    │   │   │   │   │   │   ├───arpa
    │   │   │   │   │   │   ├───net
    │   │   │   │   │   │   ├───netinet
    │   │   │   │   │   │   ├───stdc
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───solaris
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   └───windows
    │   │   │   │   │       └───stdc
    │   │   │   │   └───thread
    │   │   │   └───etc
    │   │   │       └───linux
    │   │   ├───mak
    │   │   ├───src
    │   │   │   ├───core
    │   │   │   │   ├───gc
    │   │   │   │   ├───internal
    │   │   │   │   │   ├───array
    │   │   │   │   │   ├───elf
    │   │   │   │   │   ├───util
    │   │   │   │   │   └───vararg
    │   │   │   │   ├───stdc
    │   │   │   │   ├───stdcpp
    │   │   │   │   ├───sync
    │   │   │   │   ├───sys
    │   │   │   │   │   ├───bionic
    │   │   │   │   │   ├───darwin
    │   │   │   │   │   │   ├───mach
    │   │   │   │   │   │   ├───netinet
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───dragonflybsd
    │   │   │   │   │   │   ├───netinet
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───freebsd
    │   │   │   │   │   │   ├───netinet
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───linux
    │   │   │   │   │   │   ├───netinet
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───netbsd
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───openbsd
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───posix
    │   │   │   │   │   │   ├───arpa
    │   │   │   │   │   │   ├───net
    │   │   │   │   │   │   ├───netinet
    │   │   │   │   │   │   ├───stdc
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   ├───solaris
    │   │   │   │   │   │   └───sys
    │   │   │   │   │   └───windows
    │   │   │   │   │       └───stdc
    │   │   │   │   └───thread
    │   │   │   ├───etc
    │   │   │   │   └───linux
    │   │   │   ├───gc
    │   │   │   │   └───impl
    │   │   │   │       ├───conservative
    │   │   │   │       ├───manual
    │   │   │   │       └───proto
    │   │   │   └───rt
    │   │   │       ├───backtrace
    │   │   │       └───util
    │   │   │           └───container
    │   │   └───test
    │   │       ├───aa
    │   │       │   └───src
    │   │       ├───allocations
    │   │       │   └───src
    │   │       ├───betterc
    │   │       │   └───src
    │   │       ├───config
    │   │       │   └───src
    │   │       ├───coverage
    │   │       │   └───src
    │   │       ├───cpuid
    │   │       │   └───src
    │   │       ├───cycles
    │   │       │   └───src
    │   │       ├───exceptions
    │   │       │   └───src
    │   │       ├───gc
    │   │       ├───hash
    │   │       │   └───src
    │   │       ├───imports
    │   │       │   └───src
    │   │       ├───init_fini
    │   │       │   └───src
    │   │       ├───profile
    │   │       │   └───src
    │   │       ├───shared
    │   │       │   └───src
    │   │       ├───stdcpp
    │   │       │   └───src
    │   │       ├───thread
    │   │       │   └───src
    │   │       ├───typeinfo
    │   │       │   └───src
    │   │       ├───unittest
    │   │       └───uuid
    │   └───phobos
    │       ├───.circleci
    │       ├───changelog
    │       ├───etc
    │       │   └───c
    │       │       ├───odbc
    │       │       └───zlib
    │       ├───std
    │       │   ├───algorithm
    │       │   ├───container
    │       │   ├───datetime
    │       │   ├───digest
    │       │   ├───experimental
    │       │   │   ├───allocator
    │       │   │   │   └───building_blocks
    │       │   │   └───logger
    │       │   ├───internal
    │       │   │   ├───digest
    │       │   │   ├───math
    │       │   │   ├───test
    │       │   │   └───windows
    │       │   ├───net
    │       │   ├───range
    │       │   ├───regex
    │       │   │   └───internal
    │       │   ├───uni
    │       │   └───windows
    │       └───test
    └───windows
        ├───bin
        ├───bin64
        ├───lib
        ├───lib32mscoff
        │   └───mingw
        └───lib64
            └───mingw
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant