ubuntu-15.04

Install Genymotion 2.6.0 on Ubuntu 15.04

旧街凉风 提交于 2019-12-06 06:51:46
After installing the Ubuntu 15.04 Genymotion it failed to start with the following error. genymotion: error while loading shared libraries: libdouble-conversion.so.1: cannot open shared object file: No such file or directory So I installed libdouble-conversion1 , but it still failed to start with the following log output. Command output: genymotion Logging activities to file: ~/.Genymobile/genymotion.log Aborted (core dumped) Log output: Jan 9 13:40:10 [Genymotion] [Fatal] This application failed to start because it could not find or load the Qt platform plugin "xcb". Available platform

How to run ipython from venv?

我怕爱的太早我们不能终老 提交于 2019-12-05 19:23:56
My ipython works okay, but when I try to open ipython console from venv I am getting: Traceback (most recent call last): File "/usr/bin/ipython3", line 4, in <module> from IPython import start_ipython ImportError: No module named 'IPython' Any ways to do this? Did you by any chance create the venv with the --system-site-packages flag and install ipython with pip ? This combination is broken in my experience ( Python 3.6.2 , pip 9.0.1 ). Two workarounds are: Use virtualenv instead of venv , Or use easy_install instead of pip . With pip , scripts get the wrong shebang pointing to system python.

Running R in the background

旧时模样 提交于 2019-12-04 13:53:07
Hi this is a question which i am not sure how to frame. I am running R from a remote server. My access to the remote server is via ssh@username and so on. After i access i have a command prompt which i invoke R and i am comfortable working on R. Question 1 I have a large network (100k nodes) and would like to do community detection and would like to run it in the background such that if i close my terminal its keeps running until its finished saves the result in my R working directory. I have tried using nohup R & but i am not sure the process completed successful. Question 2 If i manage to

Can not run android/sdk/build-tools/23.0.2/aapt

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-03 01:16:55
Recently installed Android Studio 1.0.1 (old version for some reasons) on Ubuntu 15, and I am trying to create a new project. Whenever I build it I get this error Cannot run program "/home/user/Android/Sdk/build-tools/23.0.2/aapt": error=2 No such file or directory" The file exists there. sudo apt-get install lib32stdc++6 lib32z1 luffynas please check your compileSdkVersion and buildToolsVersion and targetSdkVersion please same the value. simple : compileSdkVersion "23" buildToolsVersion "23" targetSdkVersion "23" I am using react-native for android. I encountered the same problem Cannot run

Android Studio, No, minSdk(API 14) > deviceSdk(API 1), moto G, Ubuntu 15.04

佐手、 提交于 2019-12-01 01:19:20
I just installed Android Studio (v1.4) on Ubuntu 15.04 (64) and am unable to connect to my Moto G (Android 5.0.2) to run the application I made from a tutorial. When asked to choose a device, I get the following choice for my device: TA9290IPXK [NULL] No, minSdk(API 14)>deviceSdk(API 1) TA9290IPXK I already enabled USB debugging on the device. when running 'adb devices' I get " ?????????????? no permission " and after killing and restarting the adv server it displays the proper serial ID but when going back to Android Studio it still does not work. Has anyone encountered this issue ? Can