installation

Unable to install Github packages in R

末鹿安然 提交于 2020-06-26 06:15:51
问题 I need a packages witch is located on Github. And I am aware that there are multiple solutions to install the package in R. I am trying to install the package on a Windows server. This is what I tried: Solution 1 (which is based on the Vignette) install.packages("devtools") library("devtools") devtools::install_github("bmschmidt/wordVectors") Error: Could not find tools necessary to compile a package In addition: Warning messages: 1: In strptime(xx, f, tz = tz): unable to identify current

Unable to install Github packages in R

夙愿已清 提交于 2020-06-26 06:15:29
问题 I need a packages witch is located on Github. And I am aware that there are multiple solutions to install the package in R. I am trying to install the package on a Windows server. This is what I tried: Solution 1 (which is based on the Vignette) install.packages("devtools") library("devtools") devtools::install_github("bmschmidt/wordVectors") Error: Could not find tools necessary to compile a package In addition: Warning messages: 1: In strptime(xx, f, tz = tz): unable to identify current

Unable to install Github packages in R

淺唱寂寞╮ 提交于 2020-06-26 06:15:01
问题 I need a packages witch is located on Github. And I am aware that there are multiple solutions to install the package in R. I am trying to install the package on a Windows server. This is what I tried: Solution 1 (which is based on the Vignette) install.packages("devtools") library("devtools") devtools::install_github("bmschmidt/wordVectors") Error: Could not find tools necessary to compile a package In addition: Warning messages: 1: In strptime(xx, f, tz = tz): unable to identify current

Wix installer: Verify that you have sufficient privileges to start system services

别来无恙 提交于 2020-06-25 10:25:22
问题 I'm using Wix installer. When I run installer I get this error: I'm logged as administrator. I also tried create anotherone user. So I tried: 1| I add my user "Administrator" to place "Log on as a service" 2| I checked my Net.Tcp Port Sharing Service if is running 3| I get my SID 4| I added to SMSvcHost.exe.config section with my SID. Check "My administrator sid" <system.serviceModel.activation> <net.tcp listenBacklog="10" maxPendingConnections="100" maxPendingAccepts="2" receiveTimeout="00

Wix installer: Verify that you have sufficient privileges to start system services

前提是你 提交于 2020-06-25 10:24:39
问题 I'm using Wix installer. When I run installer I get this error: I'm logged as administrator. I also tried create anotherone user. So I tried: 1| I add my user "Administrator" to place "Log on as a service" 2| I checked my Net.Tcp Port Sharing Service if is running 3| I get my SID 4| I added to SMSvcHost.exe.config section with my SID. Check "My administrator sid" <system.serviceModel.activation> <net.tcp listenBacklog="10" maxPendingConnections="100" maxPendingAccepts="2" receiveTimeout="00

Install MySQLdb (for python) as non-compressed egg

拥有回忆 提交于 2020-06-25 04:20:32
问题 The install instructions are: $ python setup.py build $ sudo python setup.py install # or su first This gives me an .egg file. How do I tell the install to dump the files as a normal, uncompressed library? Thanks! 回答1: OK, I hate to answer my own question, but: find your python site-packages (mine is /usr/local/lib/python2.5/site-packages ) then: $ unzip MySQL_python-1.2.2-py2.5-linux-i686.egg This worked fine for me 回答2: I'm a little late to this party, but here's a way to do it that seems

Install MySQLdb (for python) as non-compressed egg

▼魔方 西西 提交于 2020-06-25 04:20:30
问题 The install instructions are: $ python setup.py build $ sudo python setup.py install # or su first This gives me an .egg file. How do I tell the install to dump the files as a normal, uncompressed library? Thanks! 回答1: OK, I hate to answer my own question, but: find your python site-packages (mine is /usr/local/lib/python2.5/site-packages ) then: $ unzip MySQL_python-1.2.2-py2.5-linux-i686.egg This worked fine for me 回答2: I'm a little late to this party, but here's a way to do it that seems

Install MySQLdb (for python) as non-compressed egg

回眸只為那壹抹淺笑 提交于 2020-06-25 04:20:14
问题 The install instructions are: $ python setup.py build $ sudo python setup.py install # or su first This gives me an .egg file. How do I tell the install to dump the files as a normal, uncompressed library? Thanks! 回答1: OK, I hate to answer my own question, but: find your python site-packages (mine is /usr/local/lib/python2.5/site-packages ) then: $ unzip MySQL_python-1.2.2-py2.5-linux-i686.egg This worked fine for me 回答2: I'm a little late to this party, but here's a way to do it that seems

Eclipse: Failed to load the JNI shared library "C:\Program Files(x86)\Java\jdk1.7.0_15\bin\..\jre\bin\client\jvm.dll

℡╲_俬逩灬. 提交于 2020-06-24 22:59:12
问题 I'm trying to install Eclipse. I have done the following in order to install. Installed JDK 7u15 64 bit (actual download name:jdk-7u15-windows-i586.exe) in C:\Program Files(x86)\Java\JDK 1.7.0_15 I Ran cmd in administrator and typed "C:\Users\Alfred>java -version" which gave me "Java version "1.7.0_15" java(TM) SE Runtime Enviroment (build 1.7.0_15-b03) Java Hotspot(TM) Client VM (build 23.7-b01, mixed mode, sharing) In the same cmd window i typed "C:\Users\Alfred>javac -version" which gave

How to install phpseclib?

戏子无情 提交于 2020-06-24 22:04:12
问题 I have installed Apache on my machine so I can use localhost as a PHP server. That works. Right now I am trying to use PHP to send files via SFTP to another server. I looked around a bit and saw phpseclib was recommended. I can't seem to figure out how to install phpseclib. Here are the lines that the website gave: set_include_path(get_include_path() . PATH_SEPARATOR . 'phpseclib'); include('Net/SFTP.php'); You have to set the include path. I understand what these words mean but I have been