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
When running pip install . inside the mithril package directory, the installation fails with a UnicodeDecodeError. The error occurs while reading setup.py, specifically while reading the long_description file. The error message suggests that the file contains characters that cannot be decoded using the default cp1252 encoding on Windows.
To Reproduce
Clone the repository or navigate to the mithril package directory.
Run:
pip install .
The installation fails with the following traceback:
UnicodeDecodeError: 'charmap' codec can't decode byte 0x8f in position 2275: character maps to <undefined>
Expected Behavior
The package should install without errors.
Additional Context
The issue is likely caused by the long_description field in setup.py when reading README.md or another file.
System Info
OS: Windows 10/11
Mithril Version: 0.1.1
Torch Version: 2.6.0+cpu
MLX Version: NaN
NumPy Version: 2.2.3
JAX Version: NaN
Python Version: 3.12.9
Architecture: x64
The text was updated successfully, but these errors were encountered:
Bug Report
Describe the Bug
When running
pip install .
inside themithril
package directory, the installation fails with aUnicodeDecodeError
. The error occurs while readingsetup.py
, specifically while reading thelong_description
file. The error message suggests that the file contains characters that cannot be decoded using the defaultcp1252
encoding on Windows.To Reproduce
mithril
package directory.pip install .
Expected Behavior
The package should install without errors.
Additional Context
The issue is likely caused by the long_description field in setup.py when reading README.md or another file.
System Info
The text was updated successfully, but these errors were encountered: