installation

R package installed in 2 different locations

空扰寡人 提交于 2021-02-20 02:25:12
问题 I have R package ape installed in 2 locations, that are BOTH part of the .libPath() - ape version 3.3 in location1 - ape version 3.4 in location2 in ape version 3.4, there is a new function clustalomega . I have NOT loaded any of the 2 packages (using library ) ape::clustalomega doesn't work on my machine. I suspect it comes from the fact that R is considering first the old version of ape it has found in location1. I have tried to reverse the order of the libPath, with .libPath(rev(.libPath()

Write custom string value into SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall with Inno Setup

给你一囗甜甜゛ 提交于 2021-02-19 20:59:11
问题 During installation, I'd like to write a custom string value into the automatically created registry key HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MyApp.2020_is1 I tried to do this in the [Registry] section of my iss script but it seems to be ignored. Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{#MyAppName}.{#MyAppVersion}_is1"; ValueData: "some tag"; Flags: uninsdeletekey; ValueType: string; ValueName: "CustomTag" Is this generally discouraged or

Write custom string value into SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall with Inno Setup

早过忘川 提交于 2021-02-19 20:55:16
问题 During installation, I'd like to write a custom string value into the automatically created registry key HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MyApp.2020_is1 I tried to do this in the [Registry] section of my iss script but it seems to be ignored. Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{#MyAppName}.{#MyAppVersion}_is1"; ValueData: "some tag"; Flags: uninsdeletekey; ValueType: string; ValueName: "CustomTag" Is this generally discouraged or

How to create uninstaller in visual studio setup project?

心不动则不痛 提交于 2021-02-19 04:01:57
问题 I have created a visual studio setup project, but I don't know how to create uninstaller in my visual studio setup project, please tell me how to do that?? I am using Visual Studio 2005, Or is there any other software which creates complete setups with uninstaller. 回答1: I have created a visual studio setup project, but I don't know how to create uninstaller in my visual studio setup project, please tell me how to do that?? Kazar's answer is correct. The Visual Studio setup creates a .msi file

gcloud command not found -installing Google Cloud SDK

老子叫甜甜 提交于 2021-02-19 01:52:06
问题 I am trying to install the Google Cloud SDK on Mac using the following command in terminal curl https://sdk.cloud.google.com | bash It worked fine but when I move to the next step of gcloud init I get the following -bash: gcloud: command not found I have tried all solutions to the same question as in here, however I still get the same error message. The installer didn't prompt me with the following message either: Modify profile to update your $PATH and enable bash completion? (Y/n)? 回答1: The

How to install a msi using python script?

拥有回忆 提交于 2021-02-18 16:58:27
问题 Is there any python script to install a msi? I need to install msi and run it without showing any dialogue modal. I have msi on my folder c:\user\documents and i have a wxpython GUI developed using python script.I need to silent install msi and run the exe from the GUI. 回答1: simple use. No transforms provided, and code is non-blocking: import os os.system('msiexec /i %s /qn' % msi_location) With transforms, and code is non-blocking: import os os.system('msiexec /i %s TRANSFORMS=%s /qn' % (msi

Installshield not updating related DLLs on minor upgrade

偶尔善良 提交于 2021-02-18 08:04:06
问题 I'm currently working with InstallShield to deploy a .NET Winforms app. I am new to InstallShield and have not enjoyed the learning curve. The Winforms app has three related DLL's which are not getting updated during a minor upgrade. For a minor upgrade I am changing the version from 1.0.001 to 1.0.002 for example. The package code is being changed for each build automatically. I have tried adding the dll's to the [INSTALLDIR] and setting the property to "always overwrite". For some reason

Installer created via Inno Setup, can't close applications during installation on Windows 10

那年仲夏 提交于 2021-02-18 07:09:29
问题 I have created an installer for my application using Inno Setup. For a while everything works fine but recently installer failing to close explorer.exe (Windows Explorer) on Windows 10 during installation. Installer needs to restart it to replace existing context menu handler with new, but the more strange thing is that same installer works fine on Windows 8 and 8.1. Adding restartreplace flag does not helps. I also noticed that the installer can't close currently running application (old one

How to install Openface in windows python

坚强是说给别人听的谎言 提交于 2021-02-17 22:49:07
问题 I am a newbie to Openface. Due to some reasons I want to install Openface in windows with python. It would be great if anyone could guide me through that. I have searched online, but not a single article talks about windows python installation. May be I am asking a very simple question but please help me through this. 回答1: I'm not aware of OpenFace being used on Windows directly, but please contribute any changes necessary to the repository if you start working on this. I expect there to be a

Getting error while trying to run this command “ pipenv install requests ” in mac OS

こ雲淡風輕ζ 提交于 2021-02-17 13:12:28
问题 I am facing the following error: Warning: the environment variable LANG is not set! We recommend setting this in ~/.profile (or equivalent) for proper expected behavior. Creating a virtualenv for this project… Using /usr/local/opt/python/bin/python3.6 (3.6.4) to create virtualenv… ⠋Traceback (most recent call last): File "/usr/local/Cellar/python/3.6.4_4/Frameworks/Python.framework/Versions/3.6/lib/python3.6/runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "/usr/local