Questions tagged «install»

安装(或设置)是将应用程序,驱动程序,插件等部署到设备上以供将来执行和使用的过程。

15
用pip安装SciPy
使用可以通过pip安装NumPy。pip install numpy SciPy是否有类似的可能性?(这样pip install scipy做无效。) 更新资料 SciPy软件包现在可以安装了pip!
207 python  install  scipy  pip 

25
ADB安装因INSTALL_FAILED_TEST_ONLY而失败
我在将apk安装到我的设备时遇到问题。 adb install <.apk> 使用以上命令将返回以下内容: 5413 KB/s (99747 bytes in 0.017s) pkg: /data/local/tmp/AppClient.TestOnly.App3.apk Failure [INSTALL_FAILED_TEST_ONLY] 关于什么可能导致此问题的任何想法? 它肯定可以识别设备。apk可能有问题吗?
200 android  install  apk  adb 

16
如何在Mac OS X上安装特定的JDK?
我想安装一个特定的JDK(例如最新的)。为此,我转到了JDK下载主页:http : //java.sun.com/javase/downloads/index.jsp。我寻找的是Mac版本,但只看到Linux,Windows和Solaris的可下载版本,我感到有些惊讶... 这是Mac的讯息: “ Apple Computer提供了自己的Java版本。使用Software Update功能(在Apple菜单上可用)来检查您的Mac是否具有最新的Java版本。” 好的但是 ...当我用Mac更新Java时,我有一个JRE而不是一个JDK ... 我不明白为什么不存在Mac易于下载/安装的JDK版本(例如要解压缩的jar?)。
197 java  macos  install 


11
安装pycurl时出现“无法运行curl-config:[Errno 2]没有这样的文件或目录”
我正在尝试通过以下方式安装pycurl: sudo pip install pycurl 它下载得很好,但是当它运行setup.py时,我得到以下回溯: Downloading/unpacking pycurl Running setup.py egg_info for package pycurl Traceback (most recent call last): File "<string>", line 16, in <module> File "/tmp/pip-build-root/pycurl/setup.py", line 563, in <module> ext = get_extension() File "/tmp/pip-build-root/pycurl/setup.py", line 368, in get_extension ext_config = ExtensionConfiguration() File "/tmp/pip-build-root/pycurl/setup.py", line 65, in __init__ self.configure() …
185 python  install  pycurl 

11
如何在R中选择CRAN镜像
我正在尝试通过R提示符执行以下操作来安装软件包: install.packages('RMySQL') 但是输出如下: --- Please select a CRAN mirror for use in this session --- 没别的!对于这个非常基本的问题,我找不到解决方案。我应该键入什么才能选择CRAN镜像? 编辑: 作业系统:Mac-OS X 10.6.8 R版本:2.15.0
177 r  package  install  cran 

4
使用pip安装特定的git commit
我正在开发django应用程序,并且正在使用pip来管理我的需求。如何安装特定git的提交? 就我而言,我需要安装此提交:https : //github.com/aladagemre/django-notification/commit/2927346f4c513a217ac8ad076e494dd1adbf70e1
177 git  install  commit  pip 

30
无法安装RMagick 2.13.1。找不到MagickWand.h。
当我尝试安装rmagick时,出现以下错误消息: Can't install RMagick 2.13.1. Can't find MagickWand.h. *** extconf.rb failed *** Could not create Makefile due to some reason, probably lack of necessary libraries and/or headers. Check the mkmf.log file for more details. You may need configuration options. 我在Mac OSX 10.6.8,ruby 1.9.2p290,rvm 1.10.2上。 谁能帮我解决这个问题。
154 ruby  install  rmagick 

12
使用NuGet软件包管理器控制台时无法访问源
我们正在将包管理从手动更新文件转移到NuGet。我正在尝试安装较旧版本的软件包,以匹配我们在源代码管理中已经拥有的版本。无法从用户界面执行此操作,因此我使用命令行来获取正确的版本。 出于某种原因,请Install-Package继续告诉我nuget gallery无法访问。 nuget.org [ https://www.nuget.org/api/v2/]上的源不可访问。退回到NuGet本地缓存 这仅在我们的一种解决方案中发生。如果我创建一个新解决方案或在同一存储库中使用另一个解决方案,则程序包将按预期安装。我什至可以将软件包安装在虚拟解决方案中,以填充本地缓存,然后将它们成功安装在故障解决方案中。我尝试Invoke-WebRequest从NuGet控制台访问url,并获得HTTP 200。 是什么原因造成的?有没有一种方法可以按每个解决方案/项目覆盖程序包源?

17
在iTunes 12上安装IPA
我已经签署了一份IPA,用于临时分发。我可以使用Flash Builder很好地安装它。不过,我想通过iTunes 12安装发行版本。拖动到: 设备名称 应用部分 应用列表 主屏幕部分 ...不行吗?有谁知道如何使用新的iTunes 12做到这一点?
145 install  itunes  ipa 


10
以编程方式安装/卸载APK(PackageManager与Intents)
我的应用程序将安装其他应用程序,并且需要跟踪已安装的应用程序。当然,这可以通过简单地保留已安装的应用程序列表来实现。但这不是必须的!PackageManager应该负责维护installedBy(a,b)关系。实际上,根据API,它是: 公共抽象字符串getInstallerPackageName(字符串packageName)- 检索安装软件包的应用程序的软件包名称。这可以确定包装来自哪个市场。 目前的做法 使用Intent安装APK Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(apkUri, "application/vnd.android.package-archive"); startActivity(intent); 使用Intent卸载APK: Intent intent = new Intent(Intent.ACTION_DELETE, Uri.fromParts("package", getPackageManager().getPackageArchiveInfo(apkUri.getPath(), 0).packageName,null)); startActivity(intent); 显然,这不是例如Android Market安装/卸载软件包的方式。他们使用了更丰富的PackageManager版本。通过从Android Git存储库下载Android源代码可以看出这一点。以下是与Intent方法相对应的两个隐藏方法。不幸的是,它们对外部开发人员不可用。但是也许它们会在未来吗? 更好的方法 使用PackageManager安装APK /** * @hide * * Install a package. Since this may take a little while, the result will * be posted back …


19
如何找到Windows的安装时间和日期?
这听起来可能是一个疯狂的问题,但是如何找到Windows的安装时间和日期(希望通过API /注册表项)? 到目前为止,我能想到的最好的办法是查看C:\ Windows中的各种文件,然后尝试猜测...但这并不是一个很好的解决方案。
134 windows  install 

13
您没有对/Library/Ruby/Gems/2.3.0目录的写许可权。(Mac用户)
下面是我需要做的。 要运行规格,您需要安装RSpec。首先,gem install bundler在项目的根目录中运行。然后,运行bundle install。要运行单个规格文件,请运行以下命令:bundle exec rspec spec/00_hello_spec.rb。要一次运行所有规格,请运行bundle exec rspec。 所以,我输入gem install bundler终端,并得到错误: 您没有对/Library/Ruby/Gems/2.3.0目录的写许可权。 这是在原子的项目文件中 source "https://rubygems.org" gem "rspec", "~> 3.2.0" 我的问题是: 似乎终端正在给我响应,因为我不应该更改红宝石上的任何东西,而我需要bundle install在原子内部?谁能告诉我如何使用原子或在原子中运行任何东西?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.