When I enter my username and password I am looped back to the login screen again. I went to the shell screen and mv .Xauthority . Xauthority.bak is not working as it is saying /bin:/usr/bin is not included in the path environment variable.
Home
/
user-859743
Utkarsh's questions
I am working on Python 2.7 in Anaconda in Spyder IDE. I am making a project using kivy and I am importing the following libraries and kivy packages:
import numpy as np
from random import random, randint
import matplotlib.pyplot as plt
import time
# Importing the Kivy packages
from kivy.app import App
from kivy.uix.widget import Widget
from kivy.uix.button import Button
from kivy.graphics import Color, Ellipse, Line
from kivy.config import Config
from kivy.properties import NumericProperty, ReferenceListProperty, ObjectProperty
from kivy.vector import Vector
from kivy.clock import Clock
But upon compiling the line:
from kivy.app import App
I am getting an error in the console:
from kivy.app import App
Traceback (most recent call last):
File "<ipython-input-2-04ecba6f9778>", line 1, in <module>
from kivy.app import App
ImportError: No module named kivy.app
How can I resolve the issue?