Jump to content
Sign in to follow this  
bernhard_LA

tkinter failure during execution of python script on linux

Recommended Posts

I try to run that simple python script with my app using python4delphi components

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(0,4*np.pi,0.1)   # start,stop,step
y = np.sin(x)

plt.plot(x,y)
plt.show()

 

compiling and execution of my app for windows  is no problem ,  the LINUX version failed this failure 

 

......
import _tkinter # If this fails your Python may not be configured for Tk
ValueError: character U+68002f is not in range [U+0000; U+10ffff
....

Error is  EPyValure Error  with above code 

Edited by bernhard_LA

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×