osx-elcapitan

How to fix: HAXM silent installation only support mac OS X from 10.8 to 10.10

与世无争的帅哥 提交于 2019-12-08 16:59:55
问题 After updated my Mac to OS X El Capitan 10.11.1 I couldn't create new virtual devices in Android Studio From now, when I create a New Virtual Device and run my application I have the following message: > emulator: The memory needed by this AVD exceeds the max specified in > your HAXM configuration. HAXM is not working and emulator runs in > emulation mode emulator: AVD RAM size = 1024 MB emulator: HAXM > max RAM size = 512 MB emulator: You might want to adjust your AVD RAM > size and/or HAXM

Can I install Xcode 8.3 on ElCapitan

ぃ、小莉子 提交于 2019-12-08 15:41:10
问题 Can I install xcode 8.3 without updating my Mac's OS i.e. "OS X El Capitan" (Version 10.11.6) I was not able to find any reference on Apple's site, However, this link says I can't. Right now, I've Xcode 8.2.1 installed. 回答1: No, the latest version of Xcode (Version 8.3) requires macOS Sierra 10.12. I found this information on the App Store page under the compatibility section on the left side. 回答2: Well, there's a challenging way to modify and run it. :) Not as your primary Xcode instance,

How can I submit iOS apps to the App Store with MacBook A1181?

安稳与你 提交于 2019-12-08 11:08:47
问题 Apple Store no longer accepts apps builded with Xcode less than 9. I know that Xcode 9 requires at least Mac OS X 10.12 (Sierra) but this answer gave me hope: https://stackoverflow.com/a/48692923/5321513 I've a MacBook A1181 (early 2009) and I've already tried to intercept and edit all the files I think are involved in checking the version with this terminal command: grep "10.12" -R --include="Info.plist" /Applications/Xcode9.2.app 2>/dev/null changing the parameter "Minimum system version"

Why is my PATH ignored?

瘦欲@ 提交于 2019-12-08 10:11:53
问题 Although my Unix PATH includes /Library/TeX/texbin this component of my PATH appears to be ignored. For example, when I try pdftex --version I get -bash: pdftex: command not found while /Library/TeX/texbin/pdftex --version works as expected. Similarly, where -a pdftex gives no results. My PATH is built from two sources: /private/etc/paths , which contains /Users/Rax/.cabal/bin /usr/local/bin /usr/bin /bin /usr/sbin /sbin /Users/Rax/bin and two additional files in /private/etc/paths.d/40

WebStorm 11 fresh install not starting in Mac OSX

微笑、不失礼 提交于 2019-12-08 07:00:59
问题 This happened to me in fresh installs both in El Capitan and Yosemite . WebStorm 11.0.3. When trying to start WebStorm from whatever source (Finder, Spotlight etc.) it seems like it does nothing at all. No visible errors, nothing at all. So I tried to start it again with OSX's Console utility opened and I caught these: 08/02/16 12:57:29,912 webstorm[99959]: Cannot load JVM bundle: Error Domain=NSCocoaErrorDomain Code=3587 "The bundle “OpenJDK 8” couldn’t be loaded because it is damaged or

brew - permission denied

折月煮酒 提交于 2019-12-08 06:35:53
问题 My system is OSX 10.11.6. I'm running into this error: System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/rubygems/specification.rb:959:in `read': Permission denied - /Library/Ruby/Gems/2.0.0/specifications/terminal-notifier-1.6.0.gemspec (Errno::EACCES) from /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/rubygems/specification.rb:959:in `load' from /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/rubygems/specification

Error installing vcremote on Mac OS X 10.11

梦想的初衷 提交于 2019-12-08 04:14:11
问题 I am trying to install vcremote with 'sudo npm install -g --unsafe-perm vcremote' but getting below error: /usr/local/bin/vcremote -> /usr/local/lib/node_modules/vcremote/bin/vcremote > thread-sleep@1.0.4 install /usr/local/lib/node_modules/vcremote/node_modules/thread-sleep > node-pre-gyp install --fallback-to-build node-pre-gyp ERR! UNCAUGHT EXCEPTION node-pre-gyp ERR! stack Error: Cannot find module 'internal/fs' node-pre-gyp ERR! stack at Function.Module._resolveFilename (module.js:472:15

Laravel Valet not working. 127.0.0.1 Connection Refused

我的未来我决定 提交于 2019-12-08 02:52:08
问题 Trying to get the valet setup working. It appears when accessing 127.0.0.1 the connection is refused which is the message I get when I go to one of the *.dev sites setup. I've made sure apache is stopped and have been Googling all over the place and unable to find a solution. Has anyone come across this or have any ideas on what to try next? I previously had httpd22 installed but I've now uninstalled this with brew which changed the 127.0.0.1 from responding with a list directory of /Users

gfortran doesn't work after upgrading to El Capitan

谁说我不能喝 提交于 2019-12-08 02:20:41
问题 I tried upgrading to El-Capitan and Xcode 7.0 and now gfortran doesn't work. Everytime I run gfortran, I get errors which google search doesn't seem to resolve so I'm asking stack overflow: I'm trying to compile a minimal example program: program hello print *, "Hello World" end program hello When I run gfortran test.f gfortran: warning: couldn’t understand kern.osversion ‘15.0.0 ld: library not found for -lgcc_s.10.4 collect2: error: ld returned 1 exit status I'm not worried about the

stringWithContentsOfURL cookie jar in El Capitan

强颜欢笑 提交于 2019-12-08 01:55:19
I have a small open source application. I used [NSString stringWithContentsOfURL] to download website's html and check if user has been logged in in Safari. Before El Capitan everything was working fine: stringWithContentsOfURL used sharedCookiesStorage (Safari ones) and returned the html of the page as logged in user. But in El Capitan this is not working this way: stringWithContentsOfURL returns the html of the page, where the user is not logged in. So it doesn't use Safari's cookies anymore. (I'm logged in on this page in Safari). There were some changes in El Capitan, I had to add all my