Python 3.7 - 激活 venv 错误参数格式不正确 65001 WINDOWS
Python 3.7 - activate venv error Parameter format not correct 65001 WINDOWS
我刚刚将我的 python 版本更新到 3.7,但每次我激活我的 virtualenv 时,我都会收到以下错误消息:参数格式不正确 - 65001
有人知道这是什么意思以及如何解决这个问题吗?
提前致谢!
我遇到了同样的问题。它只发生在 Powershell 中。 Windows CMD 运行良好。
并使用 activate.bat 并且不激活(没有蝙蝠)。
希望对您有所帮助。
我目前遇到了同样的问题。
请检查此页面 here and this bug report。
The issue can be solved by modifying the codepage grep of
activate.bat: for /f "tokens=2 delims=:." %%a in
('"%SystemRoot%\System32\chcp.com"') do (...
只需添加“.”在 activate.bat 文件中的 "delims=:" 之后。这对我有用。
我刚刚将我的 python 版本更新到 3.7,但每次我激活我的 virtualenv 时,我都会收到以下错误消息:参数格式不正确 - 65001
有人知道这是什么意思以及如何解决这个问题吗?
提前致谢!
我遇到了同样的问题。它只发生在 Powershell 中。 Windows CMD 运行良好。 并使用 activate.bat 并且不激活(没有蝙蝠)。 希望对您有所帮助。
我目前遇到了同样的问题。 请检查此页面 here and this bug report。
The issue can be solved by modifying the codepage grep of activate.bat: for /f "tokens=2 delims=:." %%a in ('"%SystemRoot%\System32\chcp.com"') do (...
只需添加“.”在 activate.bat 文件中的 "delims=:" 之后。这对我有用。