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
Currently we set the code page during activation to 65001 (unicode).
65001
I think that setting might persist in the shell. We might want to revert it after activation is done.
Conda does the following to store the current code page in a variable:
FOR /F "tokens=2 delims=:." %%A in (\'chcp\') do for %%B in (%%A) do set "_CONDA_OLD_CHCP=%%B
The above code parses the output of chcp which is something like: Active codepage: 12345.
chcp
Active codepage: 12345
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently we set the code page during activation to
65001
(unicode).I think that setting might persist in the shell. We might want to revert it after activation is done.
Conda does the following to store the current code page in a variable:
The above code parses the output of
chcp
which is something like:Active codepage: 12345
.The text was updated successfully, but these errors were encountered: