Perl is installed in “C:\Perl64\bin,” making it accessible to all users. However, Python was installed in “C:\Users\ABC\AppData\Local\activestate\cache\bin\python.exe” instead of the C drive, preventing other users from accessing it. Any advice on this would be appreciated.
you can set the location you want when you initially grab the project, such as
state checkout orgname/projectname location
EDIT above is only checkout location, you want the runtime location, below
state checkout orgname/projectname location --runtime-path C:\Perl64
ease of access you should be relying on PATH, and the location should be irrelevant. You can do this by running
state use orgname/project
Thank you for the resolution. It worked.