I am new to Vispy and I want to plot the 2d data with 3 columns in Vispy but my code keeps giving me this error, I even tried
the example code here: example code
and it doesn't work, is it a graphic card thing. How to fix it?
return codecs.charmap_decode(input,self.errors,decoding_table)[0] UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 2575: character maps to <undefined>
Can you tell me how to fix it and what am I missing?
canvas = vispy.scene.SceneCanvas(keys='interactive', show=True)
view = canvas.central_widget.add_view()
# generate data
for X_train, y_train in dataset:
outputs = model.fit(X_train, y_train)
centers = torch.normal(size=(50, 3))
# symbols = np.random.choice(['o', '^'], len(outputs))
indexes = torch.normal(size=len(outputs), loc=centers.shape[0] / 2,
scale=centers.shape[0] / 3)
indexes = torch.clip(indexes, 0, centers.shape[0] - 1).astype(int)
# create a scatter object and fill in the data
scatter = visuals.Markers()
scatter.set_data(outputs, edge_width=0, face_color=(1, 1, 1, .5), size=5)
view.add(scatter)
view.camera = 'turntable' # or try 'arcball'
# add a colored 3D axis for orientation
axis = visuals.XYZAxis(parent=view.scene)
traceback : Traceback (most recent call last): \visualization\logs.py", line 2, in <module>
import vispy.scene \lib\site-packages\vispy\scene\__init__.py", line 33, in <module>
from .visuals import * # noqa \lib\site-packages\vispy\scene\visuals.py", line 18, in <module>
from .. import visuals \lib\site-packages\vispy\visuals\__init__.py", line 14, in <module>
from .axis import AxisVisual # noqa \lib\site-packages\vispy\visuals\axis.py", line 11, in <module>
from .visual import CompoundVisual, updating_property \lib\site-packages\vispy\visuals\visual.py", line 91, in <module>
from .. import gloo \lib\site-packages\vispy\gloo\__init__.py", line 47, in <module>
from . import gl # noqa \lib\site-packages\vispy\gloo\gl\__init__.py", line 34, in <module>
from ._constants import * # noqa \lib\site-packages\vispy\gloo\gl\_constants.py", line 330, in <module>
if repr(ob).startswith('GL_'): \lib\_sitebuiltins.py", line 61, in __repr__
self.__setup() \ib\_sitebuiltins.py", line 51, in __setup
data = fp.read() \lib\encodings\cp1252.py", line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table)[0] UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 2575: character maps to <undefined>
Process finished with exit code 1
It say there's no vispy.scene although in code provided by Vispy it is stated there
This is a bug in Python <3.10 that is being triggered by VisPy. You can either update to use Python 3.10+ or wait for the next vispy release where the code that was triggering this has been removed.
See https://github.com/vispy/vispy/issues/2386# for more information.