mac
maenda
这个作者很懒,什么都没留下…
展开
-
mac解决python连接MySQL,import MySQLdb后,出现no suitable image... but wrong architecture
在mac下使用MySQLdb模块,import时遇到以下错误:ImportError: dlopen(/Library/Python/2.7/site-packages/_mysql.so, 2): no suitable image found. Did find:/Library/Python/2.7/site-packages/_mysql.so: mach-o, but w原创 2016-10-25 05:20:58 · 2141 阅读 · 2 评论 -
特征选择mRMR算法代码实现及安装下载
算法代码实现连接可以直接下载解压运行,在mac或者Linux系统下:https://github.com/csuldw/MachineLearning/tree/master/mRMR 要看懂result.out文件结果如下:MaxRel 全称 max-relevance最大相关是最普遍地用于实现max-dependency的方法之一。 Min-Redund原创 2017-05-25 02:09:57 · 8402 阅读 · 3 评论 -
MAC安装OpenCV步骤及问题解决
MAC安装OpenCV:1、安装HomebrewHomebrew类似Ubuntu的apt-get,Fedora的yum,为了方便安装软件。安装命令为:ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"2、安装Cmake逐步运行:brew updat原创 2017-12-29 16:39:21 · 4318 阅读 · 1 评论 -
MAc安装dlib出现your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found;C++11 activated (compiler
mac 安装 lib 出现C++11 功能支持不完整的错误代码。解决方案: Xcode 8 Beta和GM版本中包含的clang编译器支持C ++ 11 thread_local 关键字。需要升级你的xcode版本到Xcode8 beta版本以上即可。链接:http://www.it1352.com/510537.html原创 2017-12-29 16:53:38 · 1970 阅读 · 0 评论 -
mac终端进入ipython报错cannot import name decorator
解决方法1,升级ipython,依然报错解决方法2,刚开始以为环境变量的原因,添加了ipython的环境变量,结果还是不行。解决方案3,在这个地方from decorator import decorator 报错,发现可以通过建立软连接的方式解决。具体修改如下:sudo ln -s /Library/Python/2.7/site-packages/decorator.py /Library/P...原创 2018-02-23 15:17:11 · 718 阅读 · 0 评论 -
spring-boot debug模式配置
在进行Mac eclipse springboot开发的时候,debug模式进不去,可以通过以下两个步骤来解决:1、添加jvm参数配置在spring-boot的maven插件加上jvmArguments配置:修改pom.xml文件<plugin> <groupId>org.springframework.boot</groupId>...原创 2018-12-06 15:20:16 · 7503 阅读 · 0 评论