sierra

Windows 10 VirtualBox安装 macOS High Sierra

感情迁移 提交于 2020-03-10 10:57:07
https://www.howtogeek.com/289594/how-to-install-macos-sierra-in-virtualbox-on-windows-10/ Step Two: Create Your Virtual Machine in VirtualBox Next, head to your Windows machine, and install VirtualBox if you haven’t already, making sure you have the latest version (seriously, older versions may not work.) Open it up and click the “New” button. Name your Virtual Machine “High Sierra,” and choose “Mac OS X” for the operating system and “Mac OS X (64-bit)” for the version (as of this writing, “macOS High Sierra” is not offered, but that’s fine.) 转存失败 重新上传 取消 Continue through the process. For

macOS Sierra安装Apache2.4+PHP7.0+MySQL5.7.16

前提是你 提交于 2019-12-29 05:44:41
Mac系统上虽然自带PHP和Apache,但是有时不是我们想要的版本呢。今天我们就在 macOS Sierra(10.12.1) 上安装比较新的版本的PHP版本,也就是 PHP7.0+ 了。本篇博客我们安装的 Apache是2.4的版本 , MySQL5.7.16 。稍后会详细介绍这一过程。 一、安装前的准备 1.安装或更新Homebrew Homebrew 就不做过多赘述了,也不是在博客中第一次提到了,是Mac上不可或缺的包包管理器。下方截图中是我本地使用的brew的版本信息,当然是目前最新的版本。在安装上述相关内容之前,要确保你的brew是最新版本。 关于Mac下Homebrew的安装在此就不做过多赘述了,请自行Google 。 下方首先进行了 brew update 的更新操作,提示我当前的brew是最新的版本。我们可以通过 brew -v 来查看当前的brew版本。如果你对brew使用的不熟的话,可以使用 brew -h 来查看brew的相关命令操作。具体如下所示:    2.Xcode8.2 确保你的Xcode是最新版本,如果你的Xcode是8.2之前的版本的话,在你编译 PHP7.0+ 的时候会提示你“更新Xcode”版本,下方就是在Xcode8.1下编译PHP7.0时报的错误。    所以,要保证你的Xcode是当前最新的版本,下方就是我更新后的Xcode8.2版本。

记录一个问题:macos High Sierra 10.13.6 内核内存泄漏,导致内存满而不得不重启

拟墨画扇 提交于 2019-12-03 17:50:00
kernel_task进程占用内存10g以上,使用中突然提示内存不足,要求杀死工作进程,不得不强按电源键来关机重启。 升级之前,版本大约是macos High Sierra 10.13.4, 系统频繁死机,一周死机6次以上,有时候一天内死机三次。 死机前机器发烫,风扇狂转,黑屏,只能强制按住电源键来关机。 机器的类型是macbook pro 15寸, 2016款。 来源: https://www.cnblogs.com/ahfuzhang/p/11805412.html

PDFtk hanging on MacOS Sierra

匿名 (未验证) 提交于 2019-12-03 02:45:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: PDFtk Server seems to be hanging indefinitely on MacOS Sierra. Looks similar to the problem it had on El Capitan . I'm trying to run this command: pdftk test1.pdf test2.pdf cat output out.pdf verbose And am getting no output, just an indefinite hang. Same with every other command I've tried. PDFtk --version: pdftk 2.02 a Handy Tool for Manipulating PDF Documents Copyright (c) 2003-13 Steward and Lee, LLC - Please Visit: www.pdftk.com This is free software; see the source code for copying conditions. There is NO warranty, not even for

Problems with Spyder 3 in macOS Sierra

匿名 (未验证) 提交于 2019-12-03 01:45:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have recently installed the latest conda distribution on macSierra. I have encountered many problems: 1) My main concern is that Spyder crashes eventually, especially when switching between applications and coming back to Spyder the rotating wheels keeps eternally spinning and unresponsive. This happens after ~10 minutes of use. I have tried spyder with different graphic backend for ipython and the problem still happens. When launching spyder the following message appears: [warn] kq_init: detected broken kqueue; not using.: Undefined error

Is OpenMP available in High Sierra LLVM?

匿名 (未验证) 提交于 2019-12-03 01:27:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: In the default LLVM provided by Apple in macOS 10.13, High Sierra, is OpenMP finally available? It has been available in main LLVM for more than a year now. (another way to ask the question might be what version of LLVM is the new Apple LLVM based on) 回答1: Standard Apple's clang supports OpenMP. They just disabled the driver option. But you can use the frontend option instead this way: clang -Xclang -fopenmp -I -L -lomp Also, you need to set DYLD_LIBRARY_PATH environmental variable: export DYLD_LIBRARY_PATH= How to get/build libomp

While installing on OSX Sierra via gcc-6, keep having “FATAL:/opt/local/bin/../libexec/as/x86_64/as: I don't understand 'm' flag!” error

匿名 (未验证) 提交于 2019-12-03 01:26:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Environment info Operating System: macOS 10.12.2 (16C68) Compiler: gcc-6 Steps to reproduce I've installed gcc-6 and modified config.mk as required into export CC = gcc-6 export CXX = g++-6 But keep having this error: g++-6 -c -std=c++0x -Wall -Wno-unknown-pragmas -Iinclude -Idmlc-core/include -Irabit/include -O3 -funroll-loops -msse2 -fPIC -fopenmp src/learner.cc -o build/learner.o FATAL:/opt/local/bin/../libexec/as/x86_64/as: I don't understand 'm' flag! What have you tried? Reinstall XCode Reinstall gcc Run make clean_all && make -4j But

MacOS High Sierra 10.13.6, python3.7 installation Install Certificate.command results in SSLError

匿名 (未验证) 提交于 2019-12-03 01:18:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: After installing python 3.7 from python.org, running the Install Certificate.command resulted in the below error. Please, can you provide some guidance? Why does Install Certificate.command result in error? [Some background] Tried to install python via anaconda, brew and python.org, even installing version 3.6.6, hoping I could get one of them to work. Each installation resulted in ssl certification errors when I tried to install a package. See further below for example error from current python 3.7 installation. I read every page with any

Xquartz and MacOS Sierra

匿名 (未验证) 提交于 2019-12-03 01:00:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am facing issue to make some of my applications that run under XQuartz work. This happened after I have updated my OS to Sierra version. I didn't have these issues with the previous OS versions. when I try to Open any of my application like Winskin, and other applications in my field. I get the error message that is titled The application X11 could not be opened . and follows with An error occurred while starting the X11 server: "Failed to activate core devices." this for Winskin. in another application, ADF, ADF I got "An error occurred