We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the issue On Windows systems, the HOME environment variable is not set or available and so the
HOME
_ROOTDIR = os.path.join(os.environ["HOME"], ".finkclient")
in fink_client\configuration.py will not work. This can be easily replaced by:
fink_client\configuration.py
_ROOTDIR = os.path.join(os.path.expanduser('~'), ".finkclient")
which is multi-platform and works on Windows, Mac OS X and Linux. (See 2nd part of this SO answer)
System Information:
Windows 11
8.7
master-9903e97
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the issue
On Windows systems, the
HOME
environment variable is not set or available and so thein
fink_client\configuration.py
will not work. This can be easily replaced by:which is multi-platform and works on Windows, Mac OS X and Linux. (See 2nd part of this SO answer)
System Information:
Windows 11
]:8.7
]master-9903e97
]The text was updated successfully, but these errors were encountered: