You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got the error below while installing BROWNIE in Visual Studio Code on Windows;
Subprocess_post_check_handle_pip_error(pip_process)
line 349, in subprocess_post_check_handle_pip_error
print(completed_process.stderr, file=pip_error_fh, end="")
return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\u2502' in position 559: character maps to
I did the following to get BROWNIE to work, may work for you;
-pip install openapi-codec
-python -m pipx ensurepath
-python -m pipx ensurepath --force
-pip install cython
-pip install cytoolz
-pip3 install --user eth-brownie
The text was updated successfully, but these errors were encountered:
I got the error below while installing BROWNIE in Visual Studio Code on Windows;
Subprocess_post_check_handle_pip_error(pip_process)
line 349, in subprocess_post_check_handle_pip_error
print(completed_process.stderr, file=pip_error_fh, end="")
return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\u2502' in position 559: character maps to
I did the following to get BROWNIE to work, may work for you;
-pip install openapi-codec
-python -m pipx ensurepath
-python -m pipx ensurepath --force
-pip install cython
-pip install cytoolz
-pip3 install --user eth-brownie
The text was updated successfully, but these errors were encountered: