Menu
  • HOME
  • TAGS

How does one install MarkLogic 8 on Ubuntu 14.04?

ubuntu,install,marklogic

According to Alex Bleasdale/David Ennis, download the CentOS version; then: Ubuntu and other Debian based distributions use DEB packages and CentOS or RedHat use RPM packages. To convert an RPM to DEB in a somewhat reliable way, one can use the 'alien' command. You install and use alien as follows:...

Error when i try to install npm with putty

amazon-ec2,npm,install,runtime-error

You must install a supported version of node.js (0.10 or 0.12), you can download it here or you can use NVM

Facebook : App extension in iOS 8

facebook,ios8,install,ios-app-extension

Facebook don't include share extension. Hence it wont be listed in UIActivityViewController. To be listed in UIActivityViewController app need to include share extension. Vine Vimeo do include share extension.

Is there an offline MinGW installer?

c,gcc,installation,windows-installer,install

I did not find an offline installer for MinGW,but instead I found a better Windows port; which is MinGW-W64 From http://mingw-w64.yaxm.org/doku.php: Mingw-w64 is an advancement of the original mingw.org project, created to support the GCC compiler on Windows systems. It has forked it in 2007 in order to provide support...

Installing pylab on Mac OSX

python,osx,matplotlib,installation,install

It looks like you ran the instructions to (re)install pip, but you did not yet run the instruction that uses pip to install matplotlib, i.e.: pip install matplotlib ...

Instalation of python 3.4

python-3.x,pyqt,install,kivy

I can't help with PyQT, and possibly this should have been two separate questions. But for Kivy the easiest way to get started is to download the portable package, which includes Python, Kivy, and all the dependencies compiled and ready to go. You can read the instructions for using the...

How to install RPi.GPIO to windows

python,module,install,raspberry-pi,gpio

First you should look for the file vcvarsall.bat in your system. If it does not exits I recommend you to install Microsoft Visual C++ Compiler for Python 2.7. This will create the vcvarsall.bat in "C:\Program Files (x86)\Common Files\Microsoft\Visual C++ for Python\9.0" if you install it for all users. The problem...

Is there a reliable way to get unique identifier for iOS device in 2015?

ios,install,udid

No, there is not and is it also against Apple policy. Your best option is to save a unique identifier in the KeyChain, which will be saved there util the iOS device is completely cleared form the settings. This will also fixe the issue where you actually identifying device and...

Error message in terminal when installing pip install xlwt

python,terminal,install,pip,xlwt

You need to use the sudo command when installing packages globally, as your user does not have write permissions to /Library/Python/2.7/site-packages. Try running sudo pip install xlwt instead....

yum install firefox error - libnssutil3.so

python,linux,firefox,install,undefined-symbol

The problem is not python, it’s the LD_LIBRARY_PATH that does not include /lib64 and /usr/lib64 setting values. we fixed this by pre-pending /lib64:/usr/lib64 to the LD_LIBRARY_PATH. export LD_LIBRARY_PATH=/usr/lib64/:/lib64:$LD_LIBRARY_PATH After this point, when I did yum help or yum install firefox (it didn't give the above error) BUT: firefox --version still...

Error installing nokogiri in ubuntu 14.0.4 (Ruby 1.8.7)

ruby,ubuntu,gem,install,nokogiri

I tried the following commands and I've got it. Thanks to Mr.Kumar $ sudo apt-get update $ sudo apt-get install libxml2-dev $ sudo apt-get install libxslt-dev $ sudo gem install nokogiri -v '1.4.7' $ gem list nokogiri *** LOCAL GEMS *** nokogiri (1.4.7) ...

py launcher does not find my Python 2.7

python,install

I found the solution. The registry had wrong entries. As I have a 32 bit version installed I went to HKEY_LOCAL_MACHINE|HKEY_CURRENT_USER\SOFTWARE\wow6432node\Python\PythonCore\2.7\InstallPath and the value was set to C:\Python27 while my installation is in D:\Python27. So I changed all the registry values to match the correct location and it now works...

Mongo doesn't start on fresh install on Ubuntu 14.04

mongodb,ubuntu,install

TL;DR: change no to yes in /etc/default/mongodb and restart the service The interesting part is in the upstart script (/etc/init/mongodb.conf), at line 19 and 21: [...] script ENABLE_MONGODB="yes" if [ -f /etc/default/mongodb ]; then . /etc/default/mongodb fi if [ "$ENABLE_MONGODB" = "yes" ]; then exec start-stop-daemon --start --quiet --chuid mongodb...

Fail to install Hackage string-conversions

haskell,install,cabal,cabal-install,hackage

I have finally figured out the solution. Rajarshi is right for the locale problem. However, changing the locale temporarily won't work. The package now correctly installed after changing the locale permanently. How to check the current locale setting $ locale If you notice that LANG is C or empty, probably...

iOS app not installing - have tried everything

ios,cordova,install,apple

Did you install a release version on your device? You can only install app on your device using develop provision file and ad-hoc provision file.

What is a practical way to install stable and development app versions simultaneously?

android,build,android-studio,install,android-gradle

Check out gradle's product flavors. You could use a different package name in two different flavors, and then be able to install both flavors on your phone at once. Note: changing package names in this way may force other tweaks (e.g., if you use a Google API key for maps,...

How to generate “make install” action using gyp?

build,makefile,make,install,gyp

The best way I found to do it, is to generate makefiles with gyp in subdirectory of project directory, and then have manually written makefile with "install", "clean" etc. targets that executes Makefile generated by gyp. To make sure that gyp is called with proper arguments, I call it from...

createrepo using --split option for a multi CD distribution

linux,centos,install

I'm not certain but I believe you need to use the pkgorder and then splittree.py scripts to generate the split RPMs directories then you can run createrepo in --split mode across them and then run buildinstall/etc. on each RPM directory/etc. in sequence.

Permission denied error near end of python module (igraph) install

python,install,igraph

You can safely ignore the message. python-igraph tries to add a header file named igraphmodule_api.h to the list of Python headers to make it possible for other extension written in C to use some of igraph's internal API. You won't need this unless you want to develop another Python extension...

install issue with python - spacy package in anaconda environment

python-3.x,install,nlp,anaconda,spacy

You have hit this bug which should be already fixed in the last version. Apparently spacy can't download the data because the destination already exists (may be from a previous interrupted download). A workaround would be to delete the /temp/data folder and retry the download.

Error while installing pygame using pip for python 3.4

python,install,pygame,pip

Thankyou so much for your help ventsyv, i finally figured it out. i believe it was an issue with the installer from pygames site. i found another site with a link to pygame and specifically for python 3.4.2. i now have no error messages and its working great. Thanks for...

Which directory is better to install Symfony projects under? [closed]

symfony2,ubuntu,install

you may install it wherever you want, you can set suiting permissions with chown and chmod, i tend to this structure /Projects/Projectx/web/app.php a common configuration is /var/www/vhosts/Projectx/web/app.php ...

Installing matplotlib on RedHat ideally using yum

python,linux,matplotlib,install,yum

I built from source. :( Surprisingly not that difficult, but ran into a lot of problems doing the interactive part (Redhat 4 is too old to have packages for most things that let you do interactive backends, I need a newer machine). # get matplotlib wget https://downloads.sourceforge.net/project/matplotlib/matplotlib/matplotlib-1.4.3/matplotlib-1.4.3.tar.gz #uncompress tar xvzf...

Angular js wont install on my machine

javascript,angularjs,node.js,install

Seem to fix the issue when i uninstalled node and then reinstall using homebrew. P.s really good tutorial: https://www.youtube.com/watch?v=FqMIyTH9wSg

Cant install a package in R

r,install,package

There are a couple of potential solutions at this link: Windows 7, update.packages problem: "unable to move temporary installation"? Could be an antivirus problem, or possibly lacking administrator privileges. The link recommends installing R in a different folder, or downloading the zip file for the package and installing it by...

Android Studio: Android 5 lollipop can't install and launch App

install

Well, you have to remove the old version of your app all the time? If yes, you should use a keystore file for signing the app (and always the same). My device also refused to update an app because I didn't sign it with a keystore file. (I have one...

My pygame game does not start as it throws up an error, how do i fix it?

python,install,pygame

You will have to install pygame. See http://www.pygame.org/download.shtml remember to use the right one for your version of pygame then say: import pygame at the beginning of your code....

What do I need to install on a WP8 device that capable it to run my app writen by wp8 and SQL Server CE 3.5?

windows-phone-7,windows-phone-8,install,sql-server-ce-3.5

Finally i found reply for my question: **Private file–based deployment (deploying the SQL Server Compact DLLs as part of the project) ***Users do not need administrative credentials to install the application. ***SQL Server Compact will not be serviced by Microsoft Update. Can also use ***ClickOnce deployment. To deploy a SQL...

Unspecified error trying to install .NET 4.5.2 Developer Pack

install,.net-4.5.2

I solved that issue in the next way: 1) Extract installer as archive(just with WinRAR using mouse right button click - extract) 2) Run Setup.exe If you get "Fatal error" on install - reboot the system. Some programs or previous actions can brake installation...

NSIS executes exe but not running the exe

installation,install,nsis

I don't see a call to SetOutPath anywhere, are you sure setup.exe actually exists? A minimal example would be: OutFile test.exe RequestExecutionLevel user InstallDir $temp\Test Section InitPluginsDir SetOutPath $pluginsdir File "setup.exe" ExecWait "$pluginsdir\setup.exe" Delete "$pluginsdir\setup.exe" SetOutPath $Temp ; Don't lock pluginsdir SectionEnd The other reason ExecWait might fail is if...

How to install R on Mac OS X 10.10.2 using Homebrew?

r,install,homebrew

You should run: brew tap homebrew/science brew install r since R is maintained in the homebrew/science tap....

Linux install command for mingw?

windows,make,install,mingw,mingw32

If you are running MinGW as a cross-compiler, hosted on Linux, (as your question title might be construed to imply), the native /usr/bin/install on the Linux host itself serves admirably; (FWIW, this is exactly how my own MinGW development platform is set up). OTOH, if you really mean "where can...

How to grant a folder with write permissions for installing gems in Ruby

ruby-on-rails,ruby,gem,install

sudo chmod 777 directory_name It grants all permissions to the user....

Cannot install SASS on windows 7 (64 bit)

ruby,windows,gem,sass,install

Turns out the latest download of ruby is having issues with it's SSL cert .. Installed an older version - works a treat

Kivy is not compitable with Cython?

python,install,cython,kivy

Kivy's latest release is not compatible with cython 0.22. You can fix it by installing cython 0.21, or by using the master branch and merging this PR. You should get a message about this as part of the compilation process when it fails....

Average Function in Pycharm

python,python-2.7,python-3.x,install,average

Did I install "Pycharm" wrong? NO in python 3 input returns a string a = int(input("please enter a:")) #this will make the input an integer # warning if the user enters invalid input it will raise an error should work fine you should also change your print line to print('...

How to check if 7zip is installed with powershell (My method fails…)

powershell,install,7zip

This could help: Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | ?{$_.DisplayName -like "7-Zip*"} ...

qmake copy files created while building

qt,copy,install,qmake

There are two approaches to address this problem. Not to check againt the initially empty directory docInstall.CONFIG += no_check_exist directory Since this directory will be created on the fly, I would personally opt for this. Create the directory explicitly createDirs.commands = $$QMAKE_MKDIR $$PWD/html This could be done either in a...

Can't install app from Play Store after installing it using Android Studio

android,android-studio,google-play,install,uninstall

try to uninstall it via adb adb uninstall com.your.packagename I already struggled with this bug too. This helped me....

Can't install any python package from the python command prompt

python,shell,install,package

No you are just to use the Windows terminal for pip package installations. If that does not work, ensure that you have installed Python properly following this guide Here.

Starts with Symfony2 : No route found for “GET /”

php,symfony2,install

that's because your demo route is equal to /app/example or something like that. Go to DefaultController in your AppBundle and change @Route parameter to single slash /

Share ImageMagick files over network drive without users installing ImageMagick?

python,imagemagick,install

Your best chance to achieve that is to share the portable version of ImageMagick. Look up ImageMagick portable on Google, download the files and put them on a share.

Error message from install.packages() - wayward continuation line

r,install,package

The windows binary is currently not available from CRAN and that install.packages didn't report that indicates that the mirror is not up-to-date. However, I was able to build the package from source on my Win7 system. Thus, you can use install.packages("textreg", type="source").

Problems installing Pycharm

linux,install,pycharm,ubuntu-14.04

I am having the same issue. It looks like maybe you and I both have a minimal (headless) Java install on our systems. Use your system's method for finding installed packages and search for Java, and i'll bet you find only openjdk-headless yum list installed | grep openjdk # or...

Call 'sudo make install' from gvim

vim,makefile,install,sudo

The easiest way would be just have vim run an external command with ! :!sudo make install Take a look at :help :!...

ImportError: No module named cassandra

django,cassandra,install

I ended up getting around this error buy reinstalling everything. Something went wrong with the setup, so I pulled down a fresh copy of django, cassandra, and django_cassandra_engine. That seemed to do the trick.

IP Messenger for CentOS 7

centos,install,messenger

You can also compile iptux from source: Install dependencies Ubuntu/Debian sudo apt-get install git libgtk2.0-dev libgconf2-dev g++ make autoconf libtool automake Fedora/Cent OS sudo yum install git gtk2-devel GConf2-devel gcc-c++ make autoconf libtool automake Clone the directory from github git clone git://github.com/iptux-src/iptux.git Compile it and install cd iptux ./configure make...

ImportError: No module named scitools.std,anaconda already installed

python,install,scitools

If you want to use anaconda, You have to replace apt-get with conda....

Go install: “Can't load package” (even though GOPATH is set)

go,install,package

GOPATH environment variable must contain valid path. \cygdrive\c\Users\Paul\Documents\Home\go\src\hello is not a valid path on Windows. Try setting GOPATH=c:\Users\Paul\Documents\Home\go instead....

express is not recognized in cmd in windows 7

node.js,express,install,npm

You have a space between express and -generator above... if this was copy-pasted, maybe you missed it... it's supposed to be express-generator as a single unit. Make certain that %USERPROFILE%\AppData\Roaming\npm both exists and is in your PATH environment variable... If it isn't there, you will have to open a new...

How to Install ROUGE In Ubuntu

perl,ubuntu,installation,install,perl-module

Basically, the trick is in the successful installation of the perl modules. I am providing the download and installing links as well. First Download ROUGE. Install perl. Install Synaptic Package manager for installing XML::DOM libxml-dom-perl The good thing is that synaptic package manager will install extra Perl modules that are...

App operations not working since Android 4.4.2

android,installer,install,android-4.4-kitkat

I solved my problem: In the onStop() method, I delete the downloaded APK file. In previous versions of Android, the onStop() method was not called if the install dialog appears, but in Android 4.2.2, the method is called and so the APK file was deleted.

Error in Composer install using Wamp and Windows 7

php,install,composer-php,packages

In your cmd prompt. SET COMPOSER_HOME="C:\path\to\composer" composer self-update This article shows you how to set an environment variable to always be available....

How can I change the component of a registry key in Installshield?

windows-installer,install,components,installshield

InstallShield has a view called "Direct Editor". This is where you can see the underlying windows installer table data / relationships. You can go to the registry table, find the row you are interested in and then update the Component_ column (There's even a drop down) and associate that entry...

Error installing sqlite3, Failed to build gem native extension

ruby-on-rails,sqlite3,gem,install

The following commands remediated my issue: brew unlink sqlite brew install sqlite3 --universal sudo gem install sqlite3 -- --with-sqlite3-dir=/usr/local/Cellar/sqlite/3.8.8.1 My long-time friend working in InfoSec assisted me. According to him, my SQLite3 updates were directing to the wrong bin. I hope this helps anyone experiencing the same frustrating issue. Thank...

How do I install the OCaml Core library on (Arch) Linux x86_64?

install,ocaml,ocaml-core

You should switch from a system compiler to an opam's one. Then the compiler's sources will be downloaded and compiled automatically as well as all prerequisites. In order to switch use the following command: opam swich 4.02.1 instead of 4.02.1 you can use any available compiler of course. The actual...

Why cant application find this libSDL2_image-2.0.so.0 library? - Ubuntu 14.04

c++,linux,install,shared-libraries,ubuntu-14.04

How can I get this the main application to read this lib? First, you need to verify that both the application and the libSDL2_image-2.0.so.0 are built with the same bitness (e.g. both are 32-bit, or both are 64-bit). The way to do that is to run: file /path/to/app /usr/local/lib/libSDL2_image-2.0.so.0...

Install configparser error on windows 7

python,configuration,module,install,pip

configparser is included in the standard library. https://docs.python.org/3/library/configparser.html Just use import configparser...

ImportError: No module named opencv after installing python-opencv in Ubuntu 14.04

python,opencv,ubuntu,install,ubuntu-14.04

You should be importing is cv2 not opencv, there is also no highgui. You might want to check out the docs

xcode 6.2 cannot install old simulator by coping

xcode,install,simulator

Goto Xcode -> Preferences -> Downloads Starting with Xcode 6.2, it will install to /Library/Developer/CoreSimulator/Profiles/Runtimes rather than in the Xcode.app bundle itself. This allows you to install the legacy runtimes without breaking the signature of the app bundle (which in turn allows you to download delta updates from the store...

installing the “bivpois” package in R using Windows

r,windows,install,package

I'm running on a Mac but I cannot see that my method would not succeed as well on a PC as long as you understand how to view and rename hidden files. I didn't figure that I'd be able to fix the package problem, so I took the authors up...

How can I install Meteor-Up (mup) correctly?

meteor,install,npm,ubuntu-14.04,meteor-up

After installing mup, I found that this got mup to install successfully. I'm not entirely sure why this works or why it isn't part of the install. $ sudo ln -s /usr/bin/nodejs /usr/bin/node Now my computer recognizes the commands $ mup and $ mup -help....

InnoSetup Chainned installers MSI file

install,windows-installer,inno-setup

I managed to fix this by removing the "/qb" which means Basic UI, so by default will be Full UI and by moving files from {tmp} to {app} folder but I don't think that is necesarry. Source: "..\..\..\Dependencies\sqlncli2012.msi"; DestDir: "{app}\Installation Files"; Source: "..\..\..\Dependencies\SQLSysClrTypes.msi"; DestDir: "{app}\Installation Files"; Source: "..\..\..\Dependencies\SQLServer2012_XMO.msi"; DestDir: "{app}\Installation...

Wheel file installation

python,install,wheel

You normally use a tool like pip to install wheels. Leave it to the tool to discover and download the file if this is for a project hosted on PyPI. For this to work, you do need to install the wheel package: pip install wheel You can then tell pip...

Prevent Removing Installed Files if they Have Been Changed NSIS

install,nsis,uninstall

Yes, you would have to store the modified timestamp or file hash (MD5 etc) in the registry or a .ini file during install and compare in the uninstaller...

Laravel vagrant up errors

laravel,cygwin,install,vagrant

The issue was I had used vagrant box add laravel [location] rather than vagrant box add laravel/homestead [location] ...

Protobuf 3.0.0-alpha1 install on windows. Virus?

windows,install,antivirus,virus,protobuf-c

Try turning your antivirus off. It sounds like it is improperly detecting a test program compiled by the configure script (which is done to check if the compiler works) as a virus and deleting the resulting executable. This is leading the configure script to conclude that your compiler doesn't work.

Make install new Python minor release over previous one

python,install

In practice, you're probably OK, and the worst-case scenario isn't that bad. I'm not sure if Python 2.x ever guaranteed binary-API stability between micro versions.* But, according to the dev guide: The only changes allowed to occur in a maintenance branch without debate are bug fixes. Also, a general rule...

Sitefinity Invalid root node configured for pages. No root node with the name of “f669d9a7-009d-4d83-ddaa-000000000002”

install,sitefinity

The issue is running the Sitefinity site under Full IIS under the ApplicationPoolIdentity with LocalDB. As the site doesn't have access to the LocalDB instance. The following article explains how to work around the issue, or simply just use IIS Express instead: http://blogs.msdn.com/b/sqlexpress/archive/2011/12/09/using-localdb-with-full-iis-part-1-user-profile.aspx How I got there: Running IIS Express...

WiX Boostrapper - Minor Upgrade

wix,install,windows-installer,bootstrapper,burn

If you are doing a minor upgrade Burn will automatically detect that and pass the right switches for you. If you are trying to force it Burn does not support that.

Install android sdk in eclipse without downloading full os

android,eclipse,sdk,install,storage

Assuming you already have a JDK installed, the bare minimum you need for Android development is the standalone SDK, the platform tools, and at least one version of the Android platform. All of that takes up less than 1/2gb. You can get the standalone SDK from here. Scroll down to...

Installing jQuery For School Final [closed]

javascript,jquery,html,css,install

Go to the link: http://jquery.com/download/ Click on "Download the compressed, production jQuery 2.1.3 Save the file on your computer in the same location as your HTML file Now zip the folder and send it across to your teacher. I am hoping you know how to load the jQuery file...

Problems installing development package from either GitHub or local

r,install

The .o files in the src directory were messing things up. I submitted a pull request so hopefully Adam will incorporate those fixes soon and your problem should go away. You could test if this works by using install_github("Dasonk/HLMdiag") until the pull request is accepted. Edit: And Adam was quick...

Sylius2 Install Dabatase Error

php,database,symfony2,install

When you change the max_input_nesting_level - it hasn't come into action. Can you confirm you've restarted Apache / Nginx and also php-fpm. Make sure also that max_input_nesting_level isn't defined anywhere else in your php.ini...

Install Dot net 4.5 silently as adependency

c#,install,silent-installer

It should be possible to use a command line like dotNetFx45_Full_setup.exe /q /norestart Use the web bootstrapper to download the Framework online Maybe have a look here and here Edit: Just see that you don't want to include .net 4.5 setup... Edit: Code fixed...

Getting a permission error when installing with bower

permissions,install,bower

Tried with sudo ? sudo bower install --allow-root sudo bower install jquery Another solution is to change the chown of your configstore folder sudo chown -R Andreas:Andreas /Users/Andreas/.config/configstore/ bower init bower install jquery If there are more errors with eaccess, expand the chown to your whole home folder...

installing isc-dhcp-server, “has no installation candidate” [closed]

linux,install,dhcp

I you didn't add repository - add Kali Linux sources.list Repositories apt-get update apt-get install isc-dhcp-server -y I see there isc-dhcp-server Index of /kali/pool/main/i/isc-dhcp...

How to run an app when it does not show under Apps?

android,debugging,install,adb

Assuming that your app do have an Activity from where you can navigate into other parts of your app. Try using below command: $ adb shell am start -n com.example.yourpackagename/.YourMainActivity or $ adb shell am start -n com.package.yourpackagename/com.example.yourpackagename.YourMainActivity This am start command, is a command-line interface to the ActivityManager....

Why install a C++ Library?

c++,cmake,install,external-library

When you build a library you translate the source code data into machine code data. The library is now essentially ready for use, but in order to use it your compiler/IDE/etc. need to know where the library is located and where the header files are located. If you built SFML...

How can I install MONO on Centos 5, without compiling from source

linux,mono,install,centos5

The answer is to use the pre-built packages from https://lbs.solidcharity.com/package/tpokorra/mono/mono-opt Thanks to Timotheus Pokorra for providing them. Note: You will need to add the provided env.sh to /etc/profile.d (or to your individual profile) to set the necessary environment variables. To use libgdiplus, you will also need to add /usr/local/lib to...

Bundle Install, Ruby on Rails, rubyinstaller

ruby-on-rails,ruby,install,bundle

there is a known issue with rubygems > 2.4.0 try running the command after running this gem update --system 2.3.0 ...

Install SQL Server 2008 R2 Express using C#

c#,install,sql-server-2008r2-express

The Following code worked for mee.. { System.Diagnostics.Process p = new System.Diagnostics.Process(); p.StartInfo = new System.Diagnostics.ProcessStartInfo(@"c:\temp\SQLEXPR_x86_ENU.exe", @"/q /ACTION=Install /FEATURES=SQL /INSTANCENAME=SQLSILENT /SQLSVCSTARTUPTYPE=Automatic /SQLSVCACCOUNT=""NT AUTHORITY\NETWORK SERVICE"" /SQLSYSADMINACCOUNTS=""BUILTIN\Administrators"" /AGTSVCACCOUNT=""NT AUTHORITY\Network Service"" /ADDCURRENTUSERASSQLADMIN=true /SECURITYMODE=SQL /SAPWD=""[email protected]"""); p.StartInfo.UseShellExecute = false;...

How to install phpseclib?

php,install,phpseclib

I got it working by installing PEAR, following this guide. By following the guide above, I figured out that apache2 was looking for php.ini in my /etc/ folder. But I ran into a problem. In my /etc/ folder there was no php.ini file. But there was php.ini.defualt. So I 'saved...

android how to install apk silently?

android,permissions,install

Try this to run your command: Process proc = Runtime.getRuntime().exec(new String[] { command }); Instead of this use the code: Process p = Runtime.getRuntime().exec("cd " + Environment.getExternalStorageDirectory() + "/.command"); And also verify your command constructed string should be correct.print the substring in your log....

Can we run php application in a LAN? [closed]

install,lan

Yes. It is possible. Install PHP and configure the PHP application on one computer on the LAN. Let's call this machine myserver.local. Then test out the application on the same workstation to make sure it's working fine. You'd probably be using a URL like this: http://localhost/appname/index.php Once you're sure that...

Datapusher issue (409 Client error) during CKAN setup : maybe a filepath issue?

install,filepath,ckan

Ok, problem solve, the 409 issue came from the config file, where you cannot type an Ip like this : 192.168.247.109:5000, you must to type : http://192.168.247.109:5000, even the first one work in a browser. Sorry for this anoying post....

How to perform Pub Get programatically from a Dart program

dart,install,yaml,dart-pub

import 'dart:io'; void main() { Process.run('pub', ['get'], runInShell: true, workingDirectory: 'dirWherePubspec.yaml_is') .then((ProcessResult results) { // ... }); } or alternatively Process.start(...)...

iOS direct install from within an app

ios,app-store,install

Take a look at the SKStoreProductViewController No, but you can link to the page on the app store and it should automatically open in the App Store app if running on an iOS device. I suppose one could also implement a browser that redirects app store links to a...

Some basic questions about JIT-Compiler and installation

.net,compilation,install,jit

There are 3 JIT compilers and even the new RyuJIT. Pre-JIT :compiles complete source code into native code in a single compilation cycle. This is done at the time of deployment of the application. Econo-JIT :compiles only those methods that are called at runtime. However, these compiled methods are removed...

How to correctly make install of binaries and data after compile in linux?

linux,make,install

There are many ways to install packages on a Linux and Unix system much like any other operating system. The normal method of installing software is through your distributions package manager. Package managers are different based on the distribution you are using but in general they take a package (a...

Installing modules with Julia

git,module,install,package,julia-lang

How did you get Julia on these machines? Julia needs git for the package manager to work, and it seems like git isn't there. You'll probably need you cluster administrator to install it, or you could install the packages manually.

Python pip install reportlab error

python,windows,install,reportlab

You're not missing the file, it's just unable to be found. Try these codes in the following order: python setup.py build --compiler=mingw32 then: python setup.py install...