Posts

Showing posts with the label developer

How to fix Android when developer options are not available for this user

Image
I have an Android One with Oreo version and suddenly my Android rebooted and after that it started to behave strangely: 1) Notification section doesn't work. I can't see notifications from my apps and the arrow and the screw icon to settings access don't work. 2) As I can't access to the notification area, I can't enable Use USB to Transfer Files to access to my phone memory. 3) I can't access to developer mode (I before active it with a lot of taps over Build number). Clicking on developer options just shows developer options are not available to this user. 4) I can't update or install the apps on google play. They freeze on Download pending... message 5) Home and Switch buttons don't work. They light up and vibrate when I tap them but they do nothing. This issue is apparently related to a deconfiguration of user accounts. To fix it, you need re-setup the users. As you can't access to the user manager (you are in guest mode ...

How to install Spyder 3.0 developer version

Image
Spyder is a Scientific PYthon Development EnviRonment (IDE). To install it from github you need following these commands: git clone https://github.com/spyder-ide/spyder.git cd spyder python setup.py install spyder Failed to import qtpy. Please check Spyder istallation requirements: qtpy 1.1.0+ and either PyQt5 5.2+ or PyQt4 4.6+ If you get this error, you must install dependencies: sudo apt-get install python-pip pip install --upgrade pip sudo pip install qtpy qtawesome pickleshare pep8 qtconsole nbconvert python bootstrap.py Now, if you like a icon on your desktop to run Spyder just with one click, you need create spyder.desktop file on your Desktop with these lines: [Desktop Entry] Type=Application Icon=${SPYDER_FOLDER}/img_src/spyder.png Name=Spyder Comment="Start Spyder" Exec="/usr/local/bin/spyder" Terminal=false Categories=Controller; GenericName[en_US]= Name...