cannot install OCaml on windows: permission error - ocaml

I am trying to follow this guide to install OCaml on windows. All I've done is download the latest installer from here, but when I try to run it I get:
FATAL [ebe9e0f2]. rename C:\Users\<myusername>\AppData\Local\Programs\DiskuvOCaml\bin\bos-08440b.tmp to C:\Users\<myusername>\AppData\Local\Programs\DiskuvOCaml\bin\opam-real.exe: Permission denied
I tried running it as administrator but I get the same error. I can't find information on that error code anywhere, even in the troubleshooting guide.. any ideas?

Related

'spinnaker-igor' was not found

For the first time, I am installing Spinnaker on AWS. I am following spinnaker documentations.
https://www.spinnaker.io/setup/install/providers/aws/
But when I am running "hal deploy apply" command it gives an error.
Reading package lists...
Building dependency tree...
Reading state information...
E: Version '0.7.0-20171002182452' for 'spinnaker-igor' was not found
! ERROR Error encountered running script. See above output for more
details.
I checked the install.sh in /home/ubuntu/.hal/default directory and I see it has configured with Spinnaker repository.
Repo is "https://dl.bintray.com/spinnaker-releases/debians". I check that repo and I could find a correct version of spinnaker-igor.
Could you please give an idea to fix this issue?
Thanks
it's possible that bintray was being flaky. The exact package you were trying to download exists here and has been published since Oct 2. You can retry hal deploy apply and if fails again let us know.

Google Cloud SDK Installation: Unzip Failed: Error opening zip file

I am getting Unzip Failed: Error opening zip file while installing Google Cloud SDK,
I am using windows 7,64 bit. I have checked the zip/unzip software also, it is working fine. here is the error
Can anybody help.
I downloaded the zip file directly from here and it is working now.
I resolved the issue by running the installer as administrator
close your proxy.
add a new env:
CLOUDSDK_PYTHON=\your Python27 path\python.exe

Error writing to file ascii.enc while installing python 2.7.11 on windows 10

I am installing npm using command "npm install -g windows-build-tools from an elevated PowerShell (run as Administrator)". It has few dependencies of visual c
++ tools and python 2.7
I am receiving an error while installing python 2.7.11
While installing by admin also i am receiving error.
I have tried giving permissions to that specific location also, set UAC to never notify also. but nothing works.enter image description here
I know it probably late but thought I'd add my thoughts.
Its most likely due to your anti-virus access protection denying write permission for this extension. I had the exact same trouble while trying to install both Python 2 and 3 but it worked fine when I temporarily paused my anti-virus.
.enc extension is associated with ransom wares and therefore most organizations black lists this particular file.
You can try rename any text file to .enc and would notice the same error.

Cannot install VisualSVN Server - error creating temporary file - Win 7

I'm on Windows 7 64 bit. Every time I try to install the latest version of VisualSVN Server (3.3.1) I get an error saying it could not create any temporary files.
I really can't figure out what's causing this error. I am installing as an administrator.
Here is a link to the installation logs.
Any help would be appreciated!
The full error is:
MSI (s) (F8!A8) [13:29:08:907]: Product: VisualSVN Server 3.3.1 -- Error 25000. Custom action InstallWMISchemaExecute failed: Error creating temporary file (0x8004402F)
The 0x8004402F is Windows Management Instrumentation (WMI) specific error code:
https://msdn.microsoft.com/en-us/library/aa394559
So you have some issues with WMI on your computer. Suggested actions to troubleshoot this issue:
run sfc /scannow command
remove all files in C:\Windows\Temp directory
remove all files in %TEMP% directory
check that LOCAL SYSTEM account has full access to 'C:\Windows\Temp\ directory

Running EMR with Cascading SDK failed

I was following this tutorial for installing Cascading to EMR:
http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/CreateCascading.html
But it failed because of bootstrap action installing the cascading-sdk. The corresponding logs is here: http://pastebin.com/jybHssTQ. As seen from the logs, it's failed because of apt-get not found. Seriously?
I also checked the sdk installation script, and found option to disable installing screen with --no-screen. It is still failed, with different error http://pastebin.com/T6CvA2H1
And now it is because of permission denied. What?
It's official guide, but I can't seem to run it. Any idea?
Rather than changing the script first, try a different EMR AMI version.
AMI versions up until 2.4.8 use Debian OS, where apt-get will work, but this runs Hadoop 1.x. AMI versions 3.0.x run Hadoop 2.2 and use Amazon Linux, which uses Yum.
See Below:
http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/ami-versions-supported.html
Also, try to add the "--tmpdir" option to get around the "Permission Denied" error.